greasemonkey script to remove auto-filled login and password "admin" added by VTiger setup
This commit is contained in:
parent
6357443f48
commit
a33931ce38
2 changed files with 10 additions and 0 deletions
|
@ -22,6 +22,7 @@ Greasemonkey/Userscripts
|
|||
* [autocompleteondamnit.user.js](https://forge.tourmentine.com/n/scripts/src/master/userscripts/autocompleteondamnit.user.js) => greasemonkey script for autocomplete on all forms
|
||||
* [nickbook.user.js](https://forge.tourmentine.com/n/scripts/src/master/userscripts/nickbook.user.js) => greasemonkey script for facebook
|
||||
* [rue89.user.js](https://forge.tourmentine.com/n/scripts/src/master/userscripts/rue89.user.js) => greasemonkey script to restore legacy rue89 favicon
|
||||
* [clearvtigerloginform.user.js](https://forge.tourmentine.com/n/scripts/src/master/userscripts/clearvtigerloginform.user.js) => greasemonkey script to remove auto-filled login&password "admin" added by VTiger setup
|
||||
|
||||
Patches
|
||||
-------
|
||||
|
|
9
userscripts/clearvtigerloginform.user.script
Normal file
9
userscripts/clearvtigerloginform.user.script
Normal file
|
@ -0,0 +1,9 @@
|
|||
// ==UserScript==
|
||||
// @name ClearVTigerLoginForm
|
||||
// @description je m'appelle pas admin putain
|
||||
// @include https://*
|
||||
// ==/UserScript==
|
||||
|
||||
|
||||
document.getElementById("username").value = ""
|
||||
document.getElementById("password").value = ""
|
Loading…
Reference in a new issue