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
电子邮箱 [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"
    ]
}