Gamedrive & Crypt Auto Ad Blocker

Automatically sets a cookie to disable ads on Gamedrive.org and crypt.cybar.xyz

  1. // ==UserScript==
  2. // @name Gamedrive & Crypt Auto Ad Blocker
  3. // @namespace https://cybar.xyz/
  4. // @version 1.1
  5. // @description Automatically sets a cookie to disable ads on Gamedrive.org and crypt.cybar.xyz
  6. // @author You
  7. // @match https://gamedrive.org/*
  8. // @match https://crypt.cybar.xyz/*
  9. // @run-at document-start
  10. // @license MIT
  11. // @grant none
  12. // ==/UserScript==
  13.  
  14. (function() {
  15. document.cookie = "ads=off; path=/; max-age=" + Number.MAX_SAFE_INTEGER;
  16. })();