Show Hide Passwords
A browser action to reveal your saved passwords.
Vad är Show Hide Passwords?
Show Hide Passwords är en Chrome-tillägg utvecklad av akilawickramasekara, och dess huvudfunktion är "A browser action to reveal your saved passwords.".
Ladda ner Show Hide Passwords-förlängningens CRX-fil
Ladda ner Show Hide Passwords-filändelser i crx-format, installera Chrome-tillägg manuellt i webbläsaren eller dela crx-filerna med vänner för att enkelt installera Chrome-tillägg.
Användarmanual för Tillägg
This App will allow you to show saved passwords in the browser.. Grundläggande Information om Tillägg
| Namn | |
| ID | dakfaecjbjjojelpglfahpbibcgagbnj |
| Officiell webbadress | https://chromewebstore.google.com/detail/show-hide-passwords/dakfaecjbjjojelpglfahpbibcgagbnj |
| Beskrivning | A browser action to reveal your saved passwords. |
| Filstorlek | 53.56 KB |
| Antal Installationer | 13 |
| Aktuell Version | 1.1 |
| Senast Uppdaterad | 2018-01-27 |
| Publiceringsdatum | 2018-01-27 |
| Betyg | 5.00/5 Totalt 1 Betyg |
| Utvecklare | akilawickramasekara |
| Betalningssätt | free |
| Stödda Språk | 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'"
} | |