Last active
January 17, 2022 10:21
-
-
Save Dianliang233/6ef2be3fa1846d66ee31e27b10d94289 to your computer and use it in GitHub Desktop.
fuk_you_mcbbs_ad.user.js
This file contains 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 Fuck you MCBBS ADs | |
// @namespace https://example.com/nomcbbsads | |
// @version 1.0 | |
// @description remove top bar ads on mcbbs.net | |
// @author Dianliang233 | |
// @updateURL https://gist.github.com/Dianliang233/6ef2be3fa1846d66ee31e27b10d94289/raw/09146ec2d8d74aca660d4571f0350beddf8ead0e/fuk_you_mcbbs_ad.user.js | |
// @match https://www.mcbbs.net/* | |
// @grant none | |
// ==/UserScript== | |
(function() { | |
'use strict'; | |
document.querySelector('h2+div+div script+div').remove() | |
})(); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment