Greasy Fork

Greasy Fork is available in English.

去LeetCode 中文版广告

try to take over the world!

目前为 2019-07-22 提交的版本。查看 最新版本

// ==UserScript==
// @name         去LeetCode 中文版广告
// @namespace    http://tampermonkey.net/
// @version      0.1
// @description  try to take over the world!
// @author       DrCube
// @match        *://*.leetcode.com/*
// @match        *://leetcode.com/*
// @grant        none
// ==/UserScript==


(function() {
    'use strict';

    $(".fa.fa-times-circle").click();
    //fa.fa-times-circle
    //btn.btn-link.pull-right.close-btn

    // Your code here...

})();