Skip to content

Instantly share code, notes, and snippets.

@maesa
Created December 24, 2015 03:00
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 maesa/7122b7e08273270a092c to your computer and use it in GitHub Desktop.
Save maesa/7122b7e08273270a092c to your computer and use it in GitHub Desktop.
Karena sampai sekarang ngga hapal nomor sendiri
// ==UserScript==
// @name Bolt! 4G LTE Auto Login
// @namespace halfnor.ml
// @version 0.0.1
// @description Input user and password to My BOLT!
// @author Maesa Randi
// @include *.boltsuper4g.com/my-bolt.html
// @require https://cdnjs.cloudflare.com/ajax/libs/jquery/1.11.3/jquery.min.js
// @grant GM_getValue
// @grant GM_setValue
// @grant GM_listValues
// ==/UserScript==
if ($("#loginusername").filter(":visible") && $("#loginpass").filter(":visible")) {
$("#loginusername").val("replace_with_your_username")
$("#loginpass").val("replace_with_your_password");
$("button[name='login-submit']").click();
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment