Created
March 1, 2023 20:19
-
-
Save SmugZombie/be9713323a9ab2d6252a80b1e6d87c26 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// ==UserScript== | |
// @name Expandrive Sales Killer | |
// @version 0.1 | |
// @description Auto Closes the new Pop generated by Expandrive | |
// @author SmugZombie | |
// @match https://www.expandrive.com/desktop/buy/ | |
// @icon https://www.google.com/s2/favicons?sz=64&domain=expandrive.com | |
// @grant none | |
// ==/UserScript== | |
(function() { | |
'use strict'; | |
window.close() | |
// Your code here... | |
})(); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment