Created
March 20, 2021 03:01
-
-
Save sathishshan/30f5b2128558abb9b2fdfe9de045417e 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 Login_MO | |
// @namespace Auto_Login | |
// @description Login_Auto | |
// @version 1.0 | |
// @match https://site.com | |
// @run-at document-start | |
// ==/UserScript== | |
window.addEventListener('load', function() { | |
// your code here | |
document.getElementsByClassName("form-control")[0].setAttribute("value", "") | |
}, false); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment