Last active
January 12, 2019 05:17
-
-
Save IanSmith123/5012b1c1c6ca3b7d19b2064e2c3a5bf4 to your computer and use it in GitHub Desktop.
51cto关闭全屏广告
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 51cto 关闭全屏广告 | |
// @namespace https://gist.github.com/IanSmith123/5012b1c1c6ca3b7d19b2064e2c3a5bf4 | |
// @version 0.1 | |
// @description try to take over the world! | |
// @author Les1ie | |
// @match *://blog.51cto.com/* | |
// @grant none | |
// @run-at document-end | |
// ==/UserScript== | |
(function() { | |
'use strict'; | |
// Your code here... | |
console.log("start..."); | |
$(".closeMB").click(); | |
console.log("end"); | |
})(); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment