// ==UserScript== // @name 屏蔽LeetCode切换地区提示 update:2020-02-22 // @namespace http://tampermonkey.net/ // @version 0.1 // @description 屏蔽LeetCode切换地区提示. // @author lushan // @match https://leetcode.com/* // @grant none // @run-at document-start // @downloadURL none // ==/UserScript== (function() { 'use strict'; var s = document.createElement('style'); s.innerHTML = '#CNbanner {display: none!important;}'; document.querySelector('head').appendChild(s); // Your code here... })();