Gamedrive & Crypt Auto Ad Blocker

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

// ==UserScript==
// @name         Gamedrive & Crypt Auto Ad Blocker
// @namespace    https://cybar.xyz/
// @version      1.1
// @description  Automatically sets a cookie to disable ads on Gamedrive.org and crypt.cybar.xyz
// @author       You
// @match        https://gamedrive.org/*
// @match        https://crypt.cybar.xyz/*
// @run-at       document-start
// @license      MIT
// @grant        none
// ==/UserScript==

(function() {
    document.cookie = "ads=off; path=/; max-age=" + Number.MAX_SAFE_INTEGER;
})();