Show Passwords
This extension transforms password fields into plain text fields.
Co je Show Passwords?
Show Passwords je rozšíření Chrome vyvinuté https://www.dahlkemedia.com, a jeho hlavní funkcí je „This extension transforms password fields into plain text fields.“.
Snímky obrazovky rozšíření
Stáhnout soubor CRX rozšíření Show Passwords
Stáhněte si soubory rozšíření Show Passwords ve formátu crx, ručně nainstalujte rozšíření Chrome do prohlížeče nebo sdílejte soubory crx s přáteli, abyste jednoduše nainstalovali rozšíření Chrome.
Pokyny pro Použití Rozšíření
Change all password inputs on a page into text inputs so you can easily see the contents of the password field. You no longer need to guess which character may or may not have been wrong and you won't need to start over. NEW in version 1.1: You can now automatically show passwords by checking the box in the popup when clicking on the extension!!!
Základní Informace o Rozšíření
Název | Show Passwords |
ID | kmbolocfihljheomgjcolimidpeepdig |
Oficiální URL | https://chromewebstore.google.com/detail/show-passwords/kmbolocfihljheomgjcolimidpeepdig |
Popis | This extension transforms password fields into plain text fields. |
Velikost souboru | 6.14 KB |
Počet instalací | 185 |
Aktuální Verze | 1.1 |
Poslední Aktualizace | 2021-12-20 |
Datum Vydání | 2016-08-31 |
Hodnocení | 4.00/5 Celkem 2 Hodnocení |
Vývojář | https://www.dahlkemedia.com |
[email protected] | |
Typ Platby | free |
Podporované Jazyky | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "Show Passwords", "description": "This extension transforms password fields into plain text fields.", "version": "1.1", "icons": { "19": "icon.png" }, "browser_action": { "default_title": "Show Passwords", "default_icon": "icon.png", "default_popup": "popup.html" }, "permissions": [ "activeTab", "storage" ], "content_scripts": [ { "matches": [ "*:\/\/*\/*" ], "js": [ "showpasswordsauto.js" ], "run_at": "document_end" } ] } |