Greasy Fork

Greasy Fork is available in English.

CMG Hacks for Safari & Firefox

A port of my chrome extension (CMG Hacks) for Safari and Firefox!

目前为 2023-07-21 提交的版本。查看 最新版本

// ==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 http://greasyfork.icu/users/995648
// ==/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 = "<h1 style='color:black'>CMG Hacks has moved!</h3><p>Go to <a href='https://math-boy11.github.io/CMG-Hacks/' target='_blank'>my website</a> to get the newest version.</p>"
document.body.appendChild(div)