pass-browser-chrome

Make secrets easily accessible from your pass' ~/.password-store

What is pass-browser-chrome?

pass-browser-chrome is a Chrome extension developed by cpoppema, and its main feature is "Make secrets easily accessible from your pass' ~/.password-store".

Extension Screenshots

screenshot
screenshot
screenshot
screenshot
screenshot

Download pass-browser-chrome Extension CRX File

Download pass-browser-chrome 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

                        pass-browser-chrome is a browser plugin for your secrets managed by pass: https://www.passwordstore.org/                    

Extension Basic Information

Name pass-browser-chrome pass-browser-chrome
ID ncoadlppaciemlepmdmdnecjlfmbidcd
Official URL https://chromewebstore.google.com/detail/pass-browser-chrome/ncoadlppaciemlepmdmdnecjlfmbidcd
Description Make secrets easily accessible from your pass' ~/.password-store
File Size 427 KB
Installation Count 262
Current Version 0.9.0
Last Updated 2022-12-06
Publish Date 2019-08-21
Rating 3.00/5 Total 2 Ratings
Developer cpoppema
Email [email protected]
Payment Type free
Extension Website https://github.com/cpoppema/pass-browser-chrome
Supported Languages en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "author": "Cornelis Poppema",
    "manifest_version": 3,
    "icons": {
        "128": "images\/icon-locked-128.png"
    },
    "action": {
        "default_icon": "images\/icon-locked-128.png",
        "default_popup": "html\/popup.html"
    },
    "background": {
        "service_worker": "js\/background.js"
    },
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "js": [
                "js\/content.js"
            ]
        }
    ],
    "permissions": [
        "alarms",
        "clipboardWrite",
        "notifications",
        "storage",
        "tabs"
    ],
    "host_permissions": [
        "*:\/\/*\/*"
    ],
    "content_security_policy": {
        "extension_pages": "script-src 'self'; object-src 'self'"
    },
    "options_page": "html\/options.html",
    "name": "pass-browser-chrome",
    "version": "0.9.0",
    "description": "Make secrets easily accessible from your pass' ~\/.password-store"
}