Skip to content

Instantly share code, notes, and snippets.

@IanSmith123
Last active January 12, 2019 05:17
Show Gist options
  • Save IanSmith123/5012b1c1c6ca3b7d19b2064e2c3a5bf4 to your computer and use it in GitHub Desktop.
Save IanSmith123/5012b1c1c6ca3b7d19b2064e2c3a5bf4 to your computer and use it in GitHub Desktop.
51cto关闭全屏广告
// ==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