Skip to content

Instantly share code, notes, and snippets.

@Greenscreener
Created July 22, 2023 10:36
Show Gist options
  • Save Greenscreener/ce6f0944a12c25380de25ffb812102a3 to your computer and use it in GitHub Desktop.
Save Greenscreener/ce6f0944a12c25380de25ffb812102a3 to your computer and use it in GitHub Desktop.
ENOWARS let there be light Tampermonkey script
// ==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