Gopass Bridge

Gopass Bridge allows searching and inserting login credentials from the gopass password manager.

Gopass Bridgeとは何ですか?

Gopass Bridgeはgopassbridge-devによって開発されたChromeの拡張機能で、その主な機能は「Gopass Bridge allows searching and inserting login credentials from the gopass password manager.」です。

拡張機能のスクリーンショット

screenshot
screenshot

Gopass Bridge拡張機能のCRXファイルをダウンロード

Gopass Bridge拡張子のファイルをcrx形式でダウンロードし、ブラウザにChrome拡張機能を手動でインストールするか、crxファイルを友達と共有して簡単にChrome拡張機能をインストールします。

拡張機能の使用方法

                        Gopass (https://www.gopass.pw) is the awesome command line password manager. This plugin enables input of login credentials from gopass. To access gopass, a native app has to be configured in the browser in addition to this plugin. The native app is a wrapper that calls gopass with the jsonapi parameter to communicate via stdin/stdout. For details on configuring native messaging, see the plugin development page on https://github.com/gopasspw/gopassbridge                    

拡張機能の基本情報

名前 Gopass Bridge Gopass Bridge
ID kkhfnlkhiapbiehimabddjbimfaijdhk
公式URL https://chromewebstore.google.com/detail/gopass-bridge/kkhfnlkhiapbiehimabddjbimfaijdhk
説明 Gopass Bridge allows searching and inserting login credentials from the gopass password manager.
ファイルサイズ 125 KB
インストール数 1,182
現在のバージョン 0.9.0
最終更新日 2022-04-09
公開日 2020-03-25
評価 3.67/5 合計 3 レビュー
開発者 gopassbridge-dev
Eメール [email protected]
支払い方法 free
拡張機能のウェブサイト https://github.com/gopasspw/gopassbridge
ヘルプページのURL https://github.com/gopasspw/gopassbridge/blob/master/README.md
対応言語 de,en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "short_name": "gopassbridge",
    "name": "Gopass Bridge",
    "version": "0.9.0",
    "description": "__MSG_extensionDescription__",
    "author": "Martin Hoefling",
    "homepage_url": "https:\/\/github.com\/gopasspw\/gopassbridge",
    "incognito": "split",
    "icons": {
        "48": "icons\/gopassbridge-48.png",
        "96": "icons\/gopassbridge-96.png"
    },
    "content_scripts": [
        {
            "matches": [
                "http:\/\/*\/*",
                "https:\/\/*\/*"
            ],
            "js": [
                "vendor\/browser-polyfill.js",
                "generic.js",
                "content.js"
            ]
        }
    ],
    "minimum_chrome_version": "63",
    "background": {
        "scripts": [
            "vendor\/browser-polyfill.js",
            "generic.js",
            "i18n.js",
            "background.js"
        ],
        "persistent": true
    },
    "options_ui": {
        "page": "options.html"
    },
    "default_locale": "en",
    "browser_action": {
        "browser_style": true,
        "default_icon": {
            "48": "icons\/gopassbridge-48.png",
            "96": "icons\/gopassbridge-96.png"
        },
        "default_title": "__MSG_browserActionTitle__",
        "default_popup": "gopassbridge.html"
    },
    "commands": {
        "_execute_browser_action": {
            "suggested_key": {
                "default": "Ctrl+Shift+U"
            }
        }
    },
    "permissions": [
        "activeTab",
        "storage",
        "nativeMessaging",
        "http:\/\/*\/*",
        "https:\/\/*\/*",
        "notifications",
        "webRequest",
        "webRequestBlocking"
    ]
}