Skip to content

Instantly share code, notes, and snippets.

@entrptaher
Last active June 13, 2024 10:54
Show Gist options
  • Save entrptaher/3743ed936ed7721956372659b94dc89c to your computer and use it in GitHub Desktop.
Save entrptaher/3743ed936ed7721956372659b94dc89c to your computer and use it in GitHub Desktop.
// ==UserScript==
// @name Facebook Blue Badge Remover
// @namespace http://taher.xyz/
// @version 0.1
// @description try to take over the world!
// @author @entrptaher
// @match https://www.facebook.com/*
// @icon https://www.google.com/s2/favicons?sz=64&domain=facebook.com
// @grant none
// ==/UserScript==
(function() {
'use strict';
document.head.insertAdjacentHTML("beforeend", `
<style>
[aria-label="Verified"],[title="Verified account"]{display:none!important}
</style>
`)
})();
@khedron01
Copy link

Good one

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment