Created
November 24, 2014 12:04
-
-
Save l-ray/7ee810fe5cc6a92c95e4 to your computer and use it in GitHub Desktop.
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
// ==UserScript== | |
// @name Automatic Login | |
// @namespace browser | |
// @include http://localhost:8080/url* | |
// @version 2 | |
// ==/UserScript== | |
document.getElementById('username').value="login"; | |
document.getElementById('password').value="password"; | |
document.getElementById('loginButton').click(); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment