Created
July 22, 2023 10:36
-
-
Save Greenscreener/ce6f0944a12c25380de25ffb812102a3 to your computer and use it in GitHub Desktop.
ENOWARS let there be light Tampermonkey script
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// ==UserScript== | |
// @name ENOWARS let there be light | |
// @namespace http://tampermonkey.net/ | |
// @version 0.1 | |
// @description try to take over the world! | |
// @author You | |
// @match https://7.enowars.com/* | |
// @icon https://www.google.com/s2/favicons?sz=64&domain=enowars.com | |
// @grant none | |
// ==/UserScript== | |
(function() { | |
'use strict'; | |
setInterval(() => { | |
document.querySelector(".page").style.backgroundColor = "white" | |
}, 1000) | |
// Your code here... | |
})(); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment