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 |
| 官方URL | 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'"
} | |