Password Manager

This extension connects to your password manager and inserts passwords and usernames into input fields.

Password Manager란 무엇입니까?

Password Manager은(는) bradevelop에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "This extension connects to your password manager and inserts passwords and usernames into input fields."입니다.

확장 프로그램 스크린샷

screenshot
screenshot

Password Manager 확장 프로그램 CRX 파일 다운로드

크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.

확장 프로그램 사용 설명서

                        This addon works together with your selfhosted instance of the password manager available on https://github.com/zeruniverse/Password-Manager.
The addon allows you to directly insert usernames and passwords stored in your password manager into logon forms.

How this addon handles your data:
Data handling
=============
When you login to your password manager instance this addon will create a local copy of your account (containing all passwords) using http or https depending on your password manager instance(please enforce https!).
The local copy of your data will be deleted after the timeout set in the addons options expires or you logout of your password manager.

Your usernames and passwords will be entered on third-party websites when you choose to use the context menu entry. Otherwise your data won't be shared to third parties.                    

확장 프로그램 기본 정보

이름 Password Manager Password Manager
ID mbfjokpccbakbnnpklkcginkalkijkan
공식 URL https://chromewebstore.google.com/detail/password-manager/mbfjokpccbakbnnpklkcginkalkijkan
설명 This extension connects to your password manager and inserts passwords and usernames into input fields.
파일 크기 67.05 KB
설치 횟수 12,156
현재 버전 0.3.15
최근 업데이트 2019-11-11
출시 날짜 2019-11-05
평점 4.67/5 총 6 개의 평점
개발자 bradevelop
이메일 [email protected]
결제 유형 free
확장 프로그램 웹 사이트 https://github.com/BenjaminHae/PwChromeExtension
도움말 페이지 URL https://github.com/BenjaminHae/PwChromeExtension/issues
개인정보 보호 정책 페이지 URL https://github.com/BenjaminHae/PwChromeExtension/blob/master/dataprivacy.md
지원되는 언어 en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Password Manager",
    "description": "This extension connects to your password manager and inserts passwords and usernames into input fields.",
    "icons": {
        "16": "icons\/icon16.png",
        "32": "icons\/icon32.png",
        "48": "icons\/icon48.png",
        "128": "icons\/icon128_alpha.png"
    },
    "version": "0.3.15",
    "browser_action": {
        "default_icon": "iconLoggedOut.png",
        "default_popup": "popup\/popup.html"
    },
    "content_scripts": [
        {
            "matches": [
                "*:\/\/*\/*"
            ],
            "js": [
                "content.js"
            ],
            "run_at": "document_end",
            "all_frames": true
        }
    ],
    "background": {
        "scripts": [
            "ext\/commonFunctions.js",
            "ext\/cryptoWrapper.js",
            "ext\/account.js",
            "ext\/backend.js",
            "background\/context.js",
            "background\/activeTabAction.js",
            "background\/backgroundListener.js",
            "background\/hostCommunication.js",
            "ext\/sha512.js",
            "ext\/aes.js",
            "ext\/pbkdf2.js"
        ]
    },
    "permissions": [
        "activeTab",
        "*:\/\/*\/*",
        "contextMenus",
        "storage"
    ],
    "options_ui": {
        "page": "popup\/options.html",
        "chrome_style": true
    }
}