Password Manager

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

Password Managerคืออะไร?

Password Manager เป็นส่วนขยายของ Chrome ที่พัฒนาโดย bradevelop และคุณลักษณะหลักของมันคือ "This extension connects to your password manager and inserts passwords and usernames into input fields."

ภาพหน้าจอของส่วนขยาย

screenshot
screenshot

ดาวน์โหลดไฟล์ CRX ของส่วนขยาย Password Manager

ดาวน์โหลดไฟล์ส่วนขยาย 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
อีเมล [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
    }
}