Browserpass

Browser extension for zx2c4's pass (password manager)

什么是Browserpass?

Browserpass是由browserpass-dev开发的Chrome扩展程序,该扩展的主要功能是“Browser extension for zx2c4's pass (password manager)”。

扩展截图

screenshot

下载Browserpass扩展crx文件

下载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"
        }
    }
}