Bear Chrome extension

Bear Chrome extension

Send to Bear.app snippets, url or entire web pages

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "__MSG_extName__",
  "version": "1.8",
  "manifest_version": 2,
  "description": "__MSG_extDesc__",
  "default_locale": "en",
  "browser_action": {
    "default_icon": {
      "19": "icon.png",
      "38": "[email protected]"
    },
    "default_title": "__MSG_extTitle__"
  },
  "permissions": [
    "storage",
    "activeTab",
    "contextMenus",
    "bear://*/*"
  ],
  "background": {
    "scripts": [
      "loader.js"
    ]
  },
  "icons": {
    "128": "Icon-128.png"
  },
  "options_ui": {
    "page": "options.html",
    "chrome_style": true
  }
}