Browserpass

Browser extension for zx2c4's pass (password manager)

Browserpass là gì?

Browserpass là một tiện ích mở rộng Chrome được phát triển bởi browserpass-dev, và tính năng chính của nó là "Browser extension for zx2c4's pass (password manager)".

Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng

screenshot

Tải xuống tệp CRX của tiện ích mở rộng Browserpass

Tải xuống các tệp mở rộng Browserpass dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.

Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng

                        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                    

Thông Tin Cơ Bản về Tiện Ích Mở Rộng

Tên Browserpass Browserpass
ID naepdomgkenhinolocfifgehidddafch
URL Chính Thức https://chromewebstore.google.com/detail/browserpass/naepdomgkenhinolocfifgehidddafch
Mô tả Browser extension for zx2c4's pass (password manager)
Kích Thước Tệp 1.1 MB
Số Lần Cài Đặt 4,039
Phiên Bản Hiện Tại 3.8.0
Cập Nhật Lần Cuối 2023-10-29
Ngày Phát Hành 2020-06-27
Đánh Giá 4.65/5 Tổng số 31 Đánh Giá
Nhà Phát Triển browserpass-dev
Email [email protected]
Loại Thanh Toán free
Trang Web Mở Rộng https://github.com/browserpass/browserpass-extension
URL Trang Chính Sách Bảo Mật https://github.com/browserpass/browserpass-extension/blob/master/PRIVACY.md
Ngôn Ngữ Được Hỗ Trợ 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"
        }
    }
}