Greasy Fork is available in English.

UK ISP Court Orders BB

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);
}