Show Password
Forgotten your password? Show password of password field. Source Code can be found in Github.
Wat is Show Password?
Show Password is een Chrome-extensie ontwikkeld door Simon Meraner, en de belangrijkste functie is "Forgotten your password? Show password of password field. Source Code can be found in Github.".
Extensie Screenshots
Download het CRX-bestand van de extensie Show Password
Download Show Password-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
Show hidden passwords in password fields. Right-click to a password field and click "Show Password"
Basisinformatie over de Extensie
Naam | Show Password |
ID | aglbjehgamjplgcjkcembamkcaclecmi |
Officiële URL | https://chromewebstore.google.com/detail/show-password/aglbjehgamjplgcjkcembamkcaclecmi |
Beschrijving | Forgotten your password? Show password of password field. Source Code can be found in Github. |
Bestandsgrootte | 10.79 KB |
Aantal Installaties | 28 |
Huidige Versie | 1.0.1 |
Laatst Bijgewerkt | 2019-04-18 |
Publicatiedatum | 2019-04-14 |
Ontwikkelaar | Simon Meraner |
Betalingswijze | free |
Ondersteunde Talen | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "Show Password", "author": "smeraner", "version": "1.0.1", "description": "Forgotten your password? Show password of password field. Source Code can be found in Github.", "permissions": [ "contextMenus", "activeTab" ], "background": { "scripts": [ "background.js" ], "persistent": false }, "manifest_version": 2, "icons": { "16": "images\/img16.png", "32": "images\/img32.png", "48": "images\/img48.png", "128": "images\/img128.png" }, "content_scripts": [ { "matches": [ "*:\/\/*\/*" ], "js": [ "content_script.js" ] } ] } |