Greasy Fork is available in English.

Visible Password

Visible password on password field

Bu betiği kurabilmeniz için Tampermonkey, Greasemonkey ya da Violentmonkey gibi bir kullanıcı betiği eklentisini kurmanız gerekmektedir.

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

Bu betiği kurabilmeniz için Tampermonkey ya da Violentmonkey gibi bir kullanıcı betiği eklentisini kurmanız gerekmektedir.

Bu betiği kurabilmeniz için Tampermonkey ya da Userscripts gibi bir kullanıcı betiği eklentisini kurmanız gerekmektedir.

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

Bu komut dosyasını yüklemek için bir kullanıcı komut dosyası yöneticisi uzantısı yüklemeniz gerekecek.

(Zaten bir kullanıcı komut dosyası yöneticim var, kurmama izin verin!)

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.

(Zateb bir user-style yöneticim var, yükleyeyim!)

// ==UserScript==
// @version         1.0.1
// @name Visible Password
// @description Visible password on password field
// @include *
// @icon https://addons.opera.com/media/extensions/55/151155/1.0.0-rev1/icons/icon_64x64.png
// @namespace https://greasyfork.org/users/49201
// ==/UserScript==

var KEY_ENTER = 13;
var inputs = document.querySelectorAll('input[type=password]');

function insec(i){
    function hidePassword()
    {
        inputs[i].type = 'password';
    }
    function showPassword()
    {
        inputs[i].type = 'text';
    }
    function onBeforeSubmit(e)
    {
        if (e.keyCode === KEY_ENTER) hidePassword();
    }
    inputs[i].addEventListener('focus', showPassword);
    inputs[i].addEventListener('blur', hidePassword);
    inputs[i].addEventListener('keydown', onBeforeSubmit);
}

for
    (var i = 0;
     i < inputs.length;
     i++)
    insec(i);