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ファイルをダウンロード

Password Manager拡張子のファイルをcrx形式でダウンロードし、ブラウザにChrome拡張機能を手動でインストールするか、crxファイルを友達と共有して簡単にChrome拡張機能をインストールします。

拡張機能の使用方法

                        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
Eメール [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
    }
}