CoolMathGames Auto /play (Free Adless Fullscreen)

Automatically add /play to the end of the URL on CoolMathGames game pages removing the ads and making the game fullscreen, excluding specified URLs.

您需要先安装一个扩展,例如 篡改猴Greasemonkey暴力猴,之后才能安装此脚本。

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

您需要先安装一个扩展,例如 篡改猴暴力猴,之后才能安装此脚本。

您需要先安装一个扩展,例如 篡改猴Userscripts ,之后才能安装此脚本。

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

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

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

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

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

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

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

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

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

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

// ==UserScript==
// @name         CoolMathGames Auto /play (Free Adless Fullscreen)
// @namespace    http://tampermonkey.net/
// @version      2.0.0
// @description  Automatically add /play to the end of the URL on CoolMathGames game pages removing the ads and making the game fullscreen, excluding specified URLs.
// @author       niceEli
// @match        https://*.coolmathgames.com/*
// @grant        none
// @license      MIT
// ==/UserScript==

(function() {
  'use strict';

  async function getExcludedUrls() {
    return new Promise(function(resolve, reject) {
      var xhr = new XMLHttpRequest();
      xhr.open('GET', 'https://niceeli.github.io/cmgExclude.txt');
      xhr.onload = function() {
        if (xhr.status === 200) {
          var excludedUrls = xhr.responseText.trim().split('\n');
          resolve(excludedUrls);
        } else {
          reject(xhr.status);
        }
      };
      xhr.onerror = function() {
        reject(xhr.status);
      };
      xhr.send();
    });
  }

  async function redirectToPlayUrl() {
    var excludedUrls = await getExcludedUrls();
    if (
      location.href.indexOf('coolmathgames.com') > -1 &&
      location.href.indexOf('/0-') > -1 &&
      location.href.indexOf('/play') == -1 &&
      !isExcludedUrl(location.href, excludedUrls)
    ) {
      location.href += '/play';
    }
  }

  function isExcludedUrl(url, excludedUrls) {
    return excludedUrls.some(function(excludedUrl) {
      return url.indexOf(excludedUrl) > -1;
    });
  }
  redirectToPlayUrl();
})();