Gopass Bridge
Gopass Bridge allows searching and inserting login credentials from the gopass password manager.
Gopass Bridge क्या है?
Gopass Bridge gopassbridge-dev द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Gopass Bridge allows searching and inserting login credentials from the gopass password manager."।
एक्सटेंशन स्क्रीनशॉट्स
एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें
crx प्रारूप में Gopass Bridge एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ 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 |
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" ] } |