Last active
July 9, 2020 07:29
-
-
Save cecekpawon/e591fe5c87f3d1b2c2286fba8e35513c to your computer and use it in GitHub Desktop.
indihome landing page http auto redirect
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
(function () { | |
// ==UserScript== | |
// @name indihome landing redirect | |
// @namespace https://cecekpawon.github.io/ | |
// @version 0.1 | |
// @description indihome landing page http auto redirect | |
// @author cecekpawon | |
// @grant none | |
// @match http*://welcome.indihome.co.id/* | |
// @run-at document-body | |
// ==/UserScript== | |
var q, a; if ((q = document.querySelector('.footer a')) && (a = q.getAttribute('href'))) window.location.replace(a); | |
})(); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment