Show Hide Passwords
A browser action to reveal your saved passwords.
什麼是Show Hide Passwords?
Show Hide Passwords是由akilawickramasekara開發的Chrome擴展程式,該擴展的主要功能是“A browser action to reveal your saved passwords.”。
下載Show Hide Passwords擴展crx文件
下載Show Hide Passwords擴展crx格式的文件,手動將Chrome擴充功能安裝到瀏覽器中,也可以將crx文件分享給朋友,輕鬆安裝Chrome擴充功能。
擴展使用說明
This App will allow you to show saved passwords in the browser.. 擴展基本資訊
| 名稱 | |
| ID | dakfaecjbjjojelpglfahpbibcgagbnj |
| 官方網址 | https://chromewebstore.google.com/detail/show-hide-passwords/dakfaecjbjjojelpglfahpbibcgagbnj |
| 簡介 | A browser action to reveal your saved passwords. |
| 檔案大小 | 53.56 KB |
| 安裝次數 | 13 |
| 目前版本 | 1.1 |
| 更新時間 | 2018-01-27 |
| 上架時間 | 2018-01-27 |
| 評分 | 5.00/5 共 1 次評分 |
| 開發者 | akilawickramasekara |
| 付費類型 | free |
| 支援的語言 | 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'"
} | |