Skip to content

Instantly share code, notes, and snippets.

@zetix
Last active September 14, 2022 00:36
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save zetix/bc66db1df9d9cc94fe98dd352842f6c1 to your computer and use it in GitHub Desktop.
Save zetix/bc66db1df9d9cc94fe98dd352842f6c1 to your computer and use it in GitHub Desktop.
Experian Skip Login Ad
// ==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