NOTICE: By continued use of this site you understand and agree to the binding Terms of Service and Privacy Policy.
// ==UserScript== // @name Speedy Instan Auto Login // @namespace irfantanjung.blogspot.com // @description Script auto login untuk SSID Speedy Instan // @include http://halo.wifi.id/wifi/login/spin_speedy/* // @include http://sh1.indonesiawifi.net/wifi/portal/spin/* // @include http://irfantanjung.blogspot.com/* // @version 1.0.1 // @grant none // ==/UserScript== /* Username dan Password untuk mengakses Speedy Instan */ var username = '';89302024053 var password = '';87280686935224 /* Script melakukan Auto Login ke Speedy Instan */ if (username === '') { alert('Username dan Password Speedy Instan Anda masih dalam kondisi default,\n silahkan ubah terlebih dahulu pada scriptnya'); return false; }else if (window.location.href.match('halo.wifi.id/wifi/login/spin_speedy')) { document.getElementById('username-login').value = username; document.getElementById('pass-login').value = password; setTimeout(function () { document.getElementsByClassName('imgbtn')[0].click(); }, 100); }else if (window.location.href.match('sh1.indonesiawifi.net/wifi/portal/spin/*')) { setTimeout(function () { window.location="http://irfantanjung.blogspot.com/"; }, 2000); }