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 파일 다운로드

크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.

확장 프로그램 사용 설명서

                        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"
    ]
}