您需要先安装一个扩展,例如 篡改猴、Greasemonkey 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 Userscripts ,之后才能安装此脚本。
您需要先安装一款用户脚本管理器扩展,例如 Tampermonkey,才能安装此脚本。
您需要先安装用户脚本管理器扩展后才能安装此脚本。
A port of my chrome extension (CMG Hacks) for Safari and Firefox!
当前为
// ==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.5 // @license MIT // @namespace https://greasyfork.org/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)