Show Hide Passwords
A browser action to reveal your saved passwords.
Wat is Show Hide Passwords?
Show Hide Passwords is een Chrome-extensie ontwikkeld door akilawickramasekara, en de belangrijkste functie is "A browser action to reveal your saved passwords.".
Download het CRX-bestand van de extensie Show Hide Passwords
Download Show Hide 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 App will allow you to show saved passwords in the browser..
Basisinformatie over de Extensie
Naam | Show Hide Passwords |
ID | dakfaecjbjjojelpglfahpbibcgagbnj |
Officiële URL | https://chromewebstore.google.com/detail/show-hide-passwords/dakfaecjbjjojelpglfahpbibcgagbnj |
Beschrijving | A browser action to reveal your saved passwords. |
Bestandsgrootte | 53.56 KB |
Aantal Installaties | 13 |
Huidige Versie | 1.1 |
Laatst Bijgewerkt | 2018-01-27 |
Publicatiedatum | 2018-01-27 |
Beoordeling | 5.00/5 Totaal 1 Beoordelingen |
Ontwikkelaar | akilawickramasekara |
Betalingswijze | free |
Ondersteunde Talen | en-US |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "Show Hide Passwords", "version": "1.1", "description": "A browser action to reveal your saved passwords.", "browser_action": { "default_title": "Show My Passwords", "default_icon": "padlock-4-16.png" }, "icons": { "16": "padlock-4-16.png", "48": "padlock-4-48.png", "128": "padlock-4-256.png" }, "content_scripts": [ { "js": [ "jquery-3.3.1.min.js", "script.js" ], "matches": [ "http:\/\/*\/*", "https:\/\/*\/*" ] } ], "background": { "scripts": [ "jquery-3.3.1.min.js", "script.js" ], "persistent": false }, "manifest_version": 2, "web_accessible_resources": [ "jquery-3.3.1.min.js", "script.js" ], "content_security_policy": "script-src 'self' https:\/\/ajax.googleapis.com; object-src 'self'" } |