Reveal Passwords
Toggle password fields to text fields so you can see what you've typed (or mistyped).
Qu'est-ce que Reveal Passwords ?
Reveal Passwords est une extension Chrome développée par Unknown, et sa fonction principale est "Toggle password fields to text fields so you can see what you've typed (or mistyped).".
Captures d'Écran de l'Extension
Télécharger le fichier CRX de l'extension Reveal Passwords
Téléchargez les fichiers d'extension Reveal Passwords au format crx, installez manuellement les extensions Chrome dans le navigateur ou partagez les fichiers crx avec des amis pour installer facilement les extensions Chrome.
Instructions d'Utilisation de l'Extension
This extension will find all password input fields on a page, and turn them into readable text fields. The icon can be clicked again to reverse the process.
Informations de Base sur l'Extension
Nom | Reveal Passwords |
ID | kbbbdhddofjfncbijifmonfffhkphkhg |
URL Officiel | https://chromewebstore.google.com/detail/reveal-passwords/kbbbdhddofjfncbijifmonfffhkphkhg |
Description | Toggle password fields to text fields so you can see what you've typed (or mistyped). |
Taille du Fichier | 15.49 KB |
Nombre d'Installations | 311 |
Version Actuelle | 1.0.0 |
Dernière Mise à Jour | 2016-06-12 |
Date de Publication | 2016-06-11 |
Évaluation | 5.00/5 Total 1 Évaluations |
Développeur | Unknown |
Type de Paiement | free |
Site Web de l'Extension | https://github.com/ctrl-freaks/reveal-passwords |
Langues Prises en Charge | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "Reveal Passwords", "description": "Toggle password fields to text fields so you can see what you've typed (or mistyped).", "version": "1.0.0", "short_name": "revealpasswords", "minimum_chrome_version": "1.0", "background": { "scripts": [ "background.js" ], "persistent": false }, "page_action": { "default_title": "Reveal Passwords", "default_icon": { "19": "icons\/inactive-19.png", "38": "icons\/inactive-38.png", "64": "icons\/inactive-64.png" } }, "content_scripts": [ { "run_at": "document_end", "matches": [ "http:\/\/*\/*" ], "js": [ "content.js" ] } ], "permissions": [ "activeTab", "declarativeContent", "storage" ], "icons": { "128": "icons\/inactive-128.png", "64": "icons\/inactive-64.png" } } |