19 lines
458 B
JavaScript
19 lines
458 B
JavaScript
// ==UserScript==
|
|
// @name Anti-Thot
|
|
// @namespace blankie-scripts
|
|
// @match *://*/*
|
|
// @grant none
|
|
// @version 1.0
|
|
// @author blankie
|
|
// @description fuck thots
|
|
// @inject-into page
|
|
// @run-at document-start
|
|
// ==/UserScript==
|
|
|
|
var real_atob = window.atob;
|
|
unsafeWindow.atob = function(a) {
|
|
if (a === "eyJhZGJsb2NrIjp7fSwiZXhjbHVkZXMiOiIifQ==") {
|
|
throw new Error("fuck thots");
|
|
}
|
|
return real_atob(a);
|
|
} |