Gopass Bridge

Gopass Bridge

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

Merlin
Additional files are visible only to premium users

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