Browserpass

Browser extension for zx2c4's pass (password manager)

What is Browserpass?

Browserpass is a Chrome extension developed by browserpass-dev, and its main feature is "Browser extension for zx2c4's pass (password manager)".

Extension Screenshots

screenshot

Download Browserpass Extension CRX File

Download Browserpass extension files in crx format, manually install Chrome extensions in the browser, or share the crx files with friends to easily install Chrome extensions.

Extension Usage Instructions

                        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                    

Extension Basic Information

Name Browserpass Browserpass
ID naepdomgkenhinolocfifgehidddafch
Official URL https://chromewebstore.google.com/detail/browserpass/naepdomgkenhinolocfifgehidddafch
Description Browser extension for zx2c4's pass (password manager)
File Size 1.1 MB
Installation Count 4,039
Current Version 3.8.0
Last Updated 2023-10-29
Publish Date 2020-06-27
Rating 4.65/5 Total 31 Ratings
Developer browserpass-dev
Email [email protected]
Payment Type free
Extension Website https://github.com/browserpass/browserpass-extension
Privacy Policy Page URL https://github.com/browserpass/browserpass-extension/blob/master/PRIVACY.md
Supported Languages 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"
        }
    }
}