Skip to content

Instantly share code, notes, and snippets.

@pongstr
Last active August 29, 2015 14:13
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 pongstr/d65893ee5d303c2ad2d3 to your computer and use it in GitHub Desktop.
Save pongstr/d65893ee5d303c2ad2d3 to your computer and use it in GitHub Desktop.

Create Bookmarklet

  1. In Chrome, click Bookmarks->Bookmark Manager
  2. Select the "Bookmarks Tab" folder on the left.
  3. Copy the script below, and paste it to the right panel with other bookmarks
javascript:(function () {
var username = ''; // add your user name here and remove this comment after
$('#user_name').val(username);
$('#password').val(username);
setTimeout(function() {$('#login_btn').click()}, 50);
})();
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment