Browserpass

Browser extension for zx2c4's pass (password manager)

Apa itu Browserpass?

Browserpass adalah ekstensi Chrome yang dikembangkan oleh browserpass-dev, dan fitur utamanya adalah "Browser extension for zx2c4's pass (password manager)".

Screenshot Ekstensi

screenshot

Unduh Berkas CRX Ekstensi Browserpass

Unduh file ekstensi Browserpass dalam format crx, pasang ekstensi Chrome secara manual di peramban, atau bagikan file crx dengan teman untuk menginstal ekstensi Chrome dengan mudah.

Petunjuk Penggunaan Ekstensi

                        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                    

Informasi Dasar Ekstensi

Nama Browserpass Browserpass
ID naepdomgkenhinolocfifgehidddafch
URL Resmi https://chromewebstore.google.com/detail/browserpass/naepdomgkenhinolocfifgehidddafch
Deskripsi Browser extension for zx2c4's pass (password manager)
Ukuran File 1.1 MB
Jumlah Instalasi 4,039
Versi Saat Ini 3.8.0
Terakhir Diperbarui 2023-10-29
Tanggal Publikasi 2020-06-27
Penilaian 4.65/5 Total 31 Penilaian
Pengembang browserpass-dev
Email [email protected]
Tipe Pembayaran free
Situs Ekstensi https://github.com/browserpass/browserpass-extension
URL Halaman Kebijakan Privasi https://github.com/browserpass/browserpass-extension/blob/master/PRIVACY.md
Bahasa yang Didukung 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"
        }
    }
}