您需要先安装一个扩展,例如 篡改猴、Greasemonkey 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 Userscripts ,之后才能安装此脚本。
您需要先安装一款用户脚本管理器扩展,例如 Tampermonkey,才能安装此脚本。
您需要先安装用户脚本管理器扩展后才能安装此脚本。
Show Big Brother on the UK internet censorship page
// ==UserScript== // @name UK ISP Court Orders BB // @namespace minitrue.gov.as1.oce/mpaa // @description Show Big Brother on the UK internet censorship page // @include http://www.ukispcourtorders.co.uk/ // @version 1 // @grant none // ==/UserScript== with({el: document.createElement("div")}){ with(el.style){ position = "fixed"; top = "0"; left = "0"; right = "0"; bottom = "0"; backgroundImage = "url('https://i.imgur.com/pAXGDRO.jpg')"; backgroundPosition = "50% 50%"; backgroundSize = "cover"; opacity = 0.3; } document.body.appendChild(el); }