try to take over the world!
// ==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
// ==/UserScript==
(function() {
'use strict';
$(".fa.fa-times-circle").click();
$("div.cn_close_btn").click();
//fa.fa-times-circle
//btn.btn-link.pull-right.close-btn
//div.cn_close_btn
})();