您需要先安装一个扩展,例如 篡改猴、Greasemonkey 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 Userscripts ,之后才能安装此脚本。
您需要先安装一款用户脚本管理器扩展,例如 Tampermonkey,才能安装此脚本。
您需要先安装用户脚本管理器扩展后才能安装此脚本。
屏蔽 leetcode 中文站的资源加载,从而禁止 leetcode 自动跳转中文站点、屏蔽中文站提示广告。
当前为
// ==UserScript== // @name 禁止 Leetcode 跳转中文站 // @namespace http://tampermonkey.net/ // @version 0.1 // @description 屏蔽 leetcode 中文站的资源加载,从而禁止 leetcode 自动跳转中文站点、屏蔽中文站提示广告。 // @author Tamce // @match https://leetcode.com // @grant none // @webRequest [{"selector":"https://assets.leetcode-cn.com/*","action":"cancel"}] // ==/UserScript== (function() { 'use strict'; })();