Show Hide Passwords
A browser action to reveal your saved passwords.
Hvad er Show Hide Passwords?
Show Hide Passwords er en Chrome-udvidelse udviklet af akilawickramasekara, og dens hovedfunktion er "A browser action to reveal your saved passwords.".
Download Show Hide Passwords-udvidelses-CRX-fil
Download Show Hide Passwords-udvidelsesfiler i crx-format, installer Chrome-udvidelser manuelt i browseren eller del crx-filer med venner for nemt at installere Chrome-udvidelser.
Brugsanvisning til Udvidelsen
This App will allow you to show saved passwords in the browser.. Grundlæggende oplysninger om udvidelsen
| Navn | |
| ID | dakfaecjbjjojelpglfahpbibcgagbnj |
| Officiel URL | https://chromewebstore.google.com/detail/show-hide-passwords/dakfaecjbjjojelpglfahpbibcgagbnj |
| Beskrivelse | A browser action to reveal your saved passwords. |
| Filstørrelse | 53.56 KB |
| Antal Installationer | 13 |
| Nuværende Version | 1.1 |
| Senest Opdateret | 2018-01-27 |
| Udgivelsesdato | 2018-01-27 |
| Bedømmelse | 5.00/5 Samlet 1 Bedømmelser |
| Udvikler | akilawickramasekara |
| Betalingsmetode | free |
| Understøttede Sprog | 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'"
} | |