Skip to content

Instantly share code, notes, and snippets.

@sathishshan
Created March 20, 2021 03:01
Show Gist options
  • Save sathishshan/30f5b2128558abb9b2fdfe9de045417e to your computer and use it in GitHub Desktop.
Save sathishshan/30f5b2128558abb9b2fdfe9de045417e to your computer and use it in GitHub Desktop.
// ==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