Browserpass

Browser extension for zx2c4's pass (password manager)

Browserpassคืออะไร?

Browserpass เป็นส่วนขยายของ Chrome ที่พัฒนาโดย browserpass-dev และคุณลักษณะหลักของมันคือ "Browser extension for zx2c4's pass (password manager)"

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

screenshot

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

ดาวน์โหลดไฟล์ส่วนขยาย Browserpass ในรูปแบบ crx และติดตั้งส่วนขยาย Chrome ด้วยตนเองในเบราว์เซอร์หรือแชร์ไฟล์ crx กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย Chrome อย่างง่ายดาย

คำแนะนำในการใช้ส่วนขยาย

                        Browserpass is a browser extension for Chrome (and Firefox) to retrieve login details from pass (passwordstore.org) straight from your browser.

It uses native messaging to talk to a local binary to retrieve the login details in a secure manner.

Hit "Ctrl+Shift+L" to open up the password search or click the lock icon , cycle through the logins with TAB and hit ENTER to auto-fill & submit the login form of the current site.

This add-on depends on a small binary you'll need to install on your OS. Installation instructions can be found here: https://github.com/browserpass/browserpass-native                    

ข้อมูลพื้นฐานของส่วนขยาย

ชื่อ Browserpass Browserpass
ID naepdomgkenhinolocfifgehidddafch
URL อย่างเป็นทางการ https://chromewebstore.google.com/detail/browserpass/naepdomgkenhinolocfifgehidddafch
คำอธิบาย Browser extension for zx2c4's pass (password manager)
ขนาดไฟล์ 1.1 MB
จำนวนการติดตั้ง 4,039
เวอร์ชันปัจจุบัน 3.8.0
อัปเดตครั้งล่าสุด 2023-10-29
วันที่เผยแพร่ 2020-06-27
คะแนน 4.65/5 รวมทั้งหมด 31 คะแนน
ผู้พัฒนา browserpass-dev
อีเมล [email protected]
ประเภทการชำระเงิน free
เว็บไซต์ส่วนขยาย https://github.com/browserpass/browserpass-extension
URL หน้านโยบายความเป็นส่วนตัว https://github.com/browserpass/browserpass-extension/blob/master/PRIVACY.md
ภาษาที่รองรับ en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Browserpass",
    "description": "Browser extension for zx2c4's pass (password manager)",
    "version": "3.8.0",
    "author": "Maxim Baz , Steve Gilberd ",
    "homepage_url": "https:\/\/github.com\/browserpass\/browserpass-extension",
    "background": {
        "persistent": true,
        "scripts": [
            "js\/background.dist.js"
        ]
    },
    "icons": {
        "16": "icon16.png",
        "128": "icon.png"
    },
    "browser_action": {
        "default_icon": {
            "16": "icon16.png",
            "128": "icon.png"
        },
        "default_popup": "popup\/popup.html"
    },
    "options_ui": {
        "page": "options\/options.html",
        "chrome_style": true,
        "open_in_tab": false
    },
    "permissions": [
        "activeTab",
        "alarms",
        "tabs",
        "clipboardRead",
        "clipboardWrite",
        "nativeMessaging",
        "notifications",
        "webRequest",
        "webRequestBlocking",
        "http:\/\/*\/*",
        "https:\/\/*\/*"
    ],
    "content_security_policy": "default-src 'none'; font-src 'self'; img-src 'self' data:; script-src 'self'; style-src 'self'",
    "commands": {
        "_execute_browser_action": {
            "suggested_key": {
                "default": "Ctrl+Shift+L"
            }
        },
        "fillBest": {
            "suggested_key": {
                "default": "Ctrl+Shift+F"
            },
            "description": "Fill form with the best matching credentials"
        }
    }
}