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-22 提交的版本,查看 最新版本

您需要先安装一款用户脚本管理器扩展,例如 Tampermonkey 篡改猴Greasemonkey 油猴子Violentmonkey 暴力猴,才能安装此脚本。

您需要先安装一款用户脚本管理器扩展,例如 Tampermonkey 篡改猴,才能安装此脚本。

您需要先安装一款用户脚本管理器扩展,例如 Tampermonkey 篡改猴Violentmonkey 暴力猴,才能安装此脚本。

您需要先安装一款用户脚本管理器扩展,例如 Tampermonkey 篡改猴Userscripts ,才能安装此脚本。

您需要先安装一款用户脚本管理器扩展,例如 Tampermonkey 篡改猴,才能安装此脚本。

您需要先安装一款用户脚本管理器扩展后才能安装此脚本。

(我已经安装了用户脚本管理器,让我安装!)

您需要先安装一款用户样式管理器扩展,比如 Stylus,才能安装此样式。

您需要先安装一款用户样式管理器扩展,比如 Stylus,才能安装此样式。

您需要先安装一款用户样式管理器扩展,比如 Stylus,才能安装此样式。

您需要先安装一款用户样式管理器扩展后才能安装此样式。

您需要先安装一款用户样式管理器扩展后才能安装此样式。

您需要先安装一款用户样式管理器扩展后才能安装此样式。

(我已经安装了用户样式管理器,让我安装!)

// ==UserScript==
// @name CMG Hacks for Safari & Firefox
// @homepage http://youtube.com/theostechtips
// @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-start
// @version 2.4
// @license MIT
// @namespace http://greasyfork.icu/users/995648
// ==/UserScript==
 
//Make the buttons
var div = document.querySelector(".pane-title");
 
if (div) {
    var randNum1 = Math.floor(Math.random() * 1000000000);
    var randNum2 = Math.floor(Math.random() * 1000000000);
 
    var str = `<a href='javascript:objpad.cmg_check_padg()' id='${randNum1}' class='btn btn-primary btn-sm'>Skip Ad</a> <button id='${randNum2}' class='btn btn-primary btn-sm'>Fullscreen</button>`
    div.insertAdjacentHTML('beforeend', str);
}
 
//Function to wait for elem
function waitForElm(selector) {
    return new Promise(resolve => {
        if (document.querySelector(selector)) {
            return resolve(document.querySelector(selector));
        }
 
        const observer = new MutationObserver(mutations => {
            if (document.querySelector(selector)) {
                resolve(document.querySelector(selector));
                observer.disconnect();
            }
        });
 
        observer.observe(document.body, {
            childList: true,
            subtree: true
        });
    });
}
 
waitForElm('.blocker-detected-2').then((elm) => {
    document.getElementById(randNum1).click()
})
 
if (document.getElementById(randNum2) && document.getElementById(randNum1)) {
    document.getElementById(randNum2).onclick = function () {
        var elem = document.getElementById("swfgamewrapper");
 
        if (!elem.webkitRequestFullScreen) {
            elem.mozRequestFullScreen()
        } else {
            elem.webkitRequestFullScreen();
        }
    }
 
    document.getElementById(randNum1).onclick = function () {
        if (document.body.contains(document.querySelector(".blocker-detected-2"))) {
            document.querySelector(".blocker-detected-2").remove();
        }
    }
}
if (window.location.href.indexOf("https://www.coolmathgames.com/0-chess") > -1) {
    document.getElementById(randNum2).style.display = "none";
    document.getElementById(randNum1).style.display = "none";
}
 
//Block specific functions
cmgGoogleAdBreak = undefined;
isCmgAdBreakDone = undefined;
loadGoogleAds = undefined;
 
waitForElm("#randomAdBlockDiv").then((elm) => {
    elm.remove()
})