greasemonkey script to remove auto-filled login and password "admin" added by VTiger setup

This commit is contained in:
n 2018-05-01 14:03:36 +02:00
parent 6357443f48
commit a33931ce38
2 changed files with 10 additions and 0 deletions

View File

@ -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
-------

View 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 = ""