Skip to content

Instantly share code, notes, and snippets.

@cecekpawon
Last active July 9, 2020 07:29
Show Gist options
  • Save cecekpawon/e591fe5c87f3d1b2c2286fba8e35513c to your computer and use it in GitHub Desktop.
Save cecekpawon/e591fe5c87f3d1b2c2286fba8e35513c to your computer and use it in GitHub Desktop.
indihome landing page http auto redirect
(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