ShowPasswords

Shows passwords in form controls on the page

K instalaci tototo skriptu si budete muset nainstalovat rozšíření jako Tampermonkey, Greasemonkey nebo Violentmonkey.

You will need to install an extension such as Tampermonkey to install this script.

K instalaci tohoto skriptu si budete muset nainstalovat rozšíření jako Tampermonkey nebo Violentmonkey.

K instalaci tohoto skriptu si budete muset nainstalovat rozšíření jako Tampermonkey nebo Userscripts.

You will need to install an extension such as Tampermonkey to install this script.

K instalaci tohoto skriptu si budete muset nainstalovat manažer uživatelských skriptů.

(Už mám manažer uživatelských skriptů, nechte mě ho nainstalovat!)

You will need to install an extension such as Stylus to install this style.

You will need to install an extension such as Stylus to install this style.

You will need to install an extension such as Stylus to install this style.

You will need to install a user style manager extension to install this style.

You will need to install a user style manager extension to install this style.

You will need to install a user style manager extension to install this style.

(Už mám manažer uživatelských stylů, nechte mě ho nainstalovat!)

// ==UserScript==
// @name        ShowPasswords
// @namespace   http://g-uberdork.homeip.net/~jweida/userjs
// @description Shows passwords in form controls on the page
// @include     *
// @version 0.0.1.20161123063142
// ==/UserScript==

// Credit goes to http://www.whatsmypass.com/?p=26 for the idea

(function() {
    var F,j,f,i;

    F = document.forms;
    for(j=0; j<F.length; ++j) {
        f = F[j];
        for (i=0; i<f.length; ++i) {
            if (f[i].type.toLowerCase() == "password")
                f[i].type = "text";
        }
    }    
})();