Gamedrive Auto Ad Blocker

Automatically sets a cookie to disable ads on Gamedrive.org

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

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