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 파일 다운로드
크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.
확장 프로그램 사용 설명서
This App will allow you to show saved passwords in the browser..
확장 프로그램 기본 정보
이름 | Show Hide Passwords |
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'" } |