// ==UserScript== // @name 去LeetCode 中文版广告 // @namespace http://tampermonkey.net/ // @version 0.2 // @description try to take over the world! // @author DrCube // @match *://*.leetcode.com/* // @match *://leetcode.com/* // @grant none // @downloadURL none // ==/UserScript== (function() { 'use strict'; $(".fa.fa-times-circle").click(); $("div.cn_close_btn").onclick(); //fa.fa-times-circle //btn.btn-link.pull-right.close-btn //div.cn_close_btn })();