Greasy Fork is available in English.

Assault Bots Anti AntiAdblock

AdBlock使用制限を解除します。

// ==UserScript==
// @name         Assault Bots Anti AntiAdblock
// @version      0.1.01
// @description  AdBlock使用制限を解除します。
// @author       nekocell
// @namespace    https://greasyfork.org/ja/users/762895-nekocell
// @match        https://games.crazygames.com/en_US/bot-machines/index.html
// @icon         https://www.google.com/s2/favicons?domain=crazygames.com
// @run-at       document-start
// ==/UserScript==

const oldAppendChild = HTMLBodyElement.prototype.appendChild;

HTMLBodyElement.prototype.appendChild = function(elm) {
  if(typeof elm.src === 'string' && elm.src.endsWith('prebid.js')) {
      return;
  }

  oldAppendChild.call(this, elm);
};