Gopass Bridge

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

Gopass Bridge là gì?

Gopass Bridge là một tiện ích mở rộng Chrome được phát triển bởi gopassbridge-dev, và tính năng chính của nó là "Gopass Bridge allows searching and inserting login credentials from the gopass password manager.".

Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng

screenshot
screenshot

Tải xuống tệp CRX của tiện ích mở rộng Gopass Bridge

Tải xuống các tệp mở rộng Gopass Bridge dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.

Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng

                        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                    

Thông Tin Cơ Bản về Tiện Ích Mở Rộng

Tên Gopass Bridge Gopass Bridge
ID kkhfnlkhiapbiehimabddjbimfaijdhk
URL Chính Thức https://chromewebstore.google.com/detail/gopass-bridge/kkhfnlkhiapbiehimabddjbimfaijdhk
Mô tả Gopass Bridge allows searching and inserting login credentials from the gopass password manager.
Kích Thước Tệp 125 KB
Số Lần Cài Đặt 1,182
Phiên Bản Hiện Tại 0.9.0
Cập Nhật Lần Cuối 2022-04-09
Ngày Phát Hành 2020-03-25
Đánh Giá 3.67/5 Tổng số 3 Đánh Giá
Nhà Phát Triển gopassbridge-dev
Email [email protected]
Loại Thanh Toán free
Trang Web Mở Rộng https://github.com/gopasspw/gopassbridge
URL Trang Trợ Giúp https://github.com/gopasspw/gopassbridge/blob/master/README.md
Ngôn Ngữ Được Hỗ Trợ 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"
    ]
}