CMG Hacks for Safari & Firefox

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

目前為 2023-07-22 提交的版本,檢視 最新版本

您需要先安裝使用者腳本管理器擴展,如 TampermonkeyGreasemonkeyViolentmonkey 之後才能安裝該腳本。

You will need to install an extension such as Tampermonkey to install this script.

您需要先安裝使用者腳本管理器擴充功能,如 TampermonkeyViolentmonkey 後才能安裝該腳本。

您需要先安裝使用者腳本管理器擴充功能,如 TampermonkeyUserscripts 後才能安裝該腳本。

你需要先安裝一款使用者腳本管理器擴展,比如 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 https://greasyfork.org/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()
})