Reveal Passwords
Toggle password fields to text fields so you can see what you've typed (or mistyped).
Wat is Reveal Passwords?
Reveal Passwords is een Chrome-extensie ontwikkeld door Unknown, en de belangrijkste functie is "Toggle password fields to text fields so you can see what you've typed (or mistyped).".
Extensie Screenshots
Download het CRX-bestand van de extensie Reveal Passwords
Download Reveal Passwords-extensiebestanden in crx-indeling, installeer Chrome-extensies handmatig in de browser of deel de crx-bestanden met vrienden om Chrome-extensies eenvoudig te installeren.
Instructies voor het Gebruik van de Extensie
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. Basisinformatie over de Extensie
| Naam | |
| ID | kbbbdhddofjfncbijifmonfffhkphkhg |
| Officiële URL | https://chromewebstore.google.com/detail/reveal-passwords/kbbbdhddofjfncbijifmonfffhkphkhg |
| Beschrijving | Toggle password fields to text fields so you can see what you've typed (or mistyped). |
| Bestandsgrootte | 15.49 KB |
| Aantal Installaties | 311 |
| Huidige Versie | 1.0.0 |
| Laatst Bijgewerkt | 2016-06-12 |
| Publicatiedatum | 2016-06-11 |
| Beoordeling | 5.00/5 Totaal 1 Beoordelingen |
| Ontwikkelaar | Unknown |
| Betalingswijze | free |
| Extensiewebsite | https://github.com/ctrl-freaks/reveal-passwords |
| Ondersteunde Talen | 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"
}
} | |