// ==UserScript== // @name CMG Hacks for Safari & Firefox // @homepage https://math-boy11.github.io/CMG-Hacks/ // @author Theo's Tech Tips // @description A port of my chrome extension (CMG Hacks) for Safari and Firefox! // @grant none // @match *://www.coolmathgames.com/0-* // @run-at document-body // @version 2.3 // @license MIT // @namespace https://greasyfork.org/users/995648 // @downloadURL none // ==/UserScript== var div = document.createElement("div"); div.style.position = "absolute"; div.style.left = "5px"; div.style.top = "5px"; div.style.backgroundColor = "white"; div.style.color = "black"; div.innerHTML = "

CMG Hacks has moved!

Go to my website to get the newest version.

" document.body.appendChild(div)