Last active
September 14, 2022 00:36
-
-
Save zetix/bc66db1df9d9cc94fe98dd352842f6c1 to your computer and use it in GitHub Desktop.
Experian Skip Login Ad
This file contains hidden or 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 Experian Skip Login Ad | |
// @namespace https://gist.github.com/ZetiX/bc66db1df9d9cc94fe98dd352842f6c1 | |
// @match https://usa.experian.com/member/loginInterstitial | |
// @grant none | |
// @version 1.1 | |
// @author ZetiX | |
// @license GNU GPLv3 | |
// @description Skips membership purchase page when logging in to Experian | |
// ==/UserScript== | |
window.onload = function() { | |
window.location = 'https://usa.experian.com/member/dashboard'; | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment