Last active
June 13, 2024 10:54
-
-
Save entrptaher/3743ed936ed7721956372659b94dc89c to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// ==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> | |
`) | |
})(); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Good one