In order to install these Grease Monkey scripts,you need to install Mozilla Firefox with grease monkey add-on installed
Step-1
Download Mozilla Firefox Web browser from here :
http://www.mozilla.com/en-US/firefox/
Step-2
Install Grease Monkey in your Firefox browser :
https://addons.mozilla.org/en-US/firefo
This is a Grease Monkey script which shows password when mouse is moved over password field of the orkut/gmail/yahoo login page.
Step-3
To install this "Show Password" Grease Monkey script,just click the link given below the script will be auto installed on your browser.
http://prudhvi500.googlepages.com/showp
Or
Copy and paste the following code in notepad and save it as anything.user.js and then install this
// ==UserScript==
// @name Shows the Password on MouseOverby Prudhvi
// @namespace Prudhvi
// @include *
// @description shows password when mouse is moved over password field
(function() {
var inputs, input;
inputs = document.evaluate(
'//input[@type="password"]',
document,
null,
XPathResult.UNORDERED_NODE_SNAPSHOT_TYPE,
null);
if(!inputs.snapshotLength) return;
for(var i = 0; i <>
input = inputs.snapshotItem(i);
input.addEventListener('mouseover', function(event) {
this.type = 'text';
}, false);
input.addEventListener('mouseout', function(event) {
this.type = 'password';
}, false);
}
})();
No comments:
Post a Comment