Instant Dictionary by GoodWordGuide.com

Instant Dictionary by GoodWordGuide.com

Dictionary Bubble (Instant Dictionary): quickly lookup word definitions with audio pronunciation as you browse the web.

Additional files are visible only to premium users

manifest.json


{
  "name": "__MSG_extName__",
  "short_name": "Dictionary Bubble",
  "version": "15.5",
  "manifest_version": 2,
  "default_locale": "en",
  "description": "__MSG_extDescription__",
  "homepage_url": "https://www.goodwordguide.com",
  "options_ui": {
    "page": "pages/options.html",
    "open_in_tab": true
  },
  "omnibox": {
    "keyword": "dictionary"
  },
  "browser_action": {
    "default_title": "Click here to quickly view word definitions for selected word.",
    "default_popup": "pages/page-action.html",
    "default_icon": "images/gwgd-logo.png"
  },
  "icons": {
    "48": "images/gwgd-logo.png",
    "128": "images/gwgd-logo.png"
  },
  "background": {
    "scripts": [
      "js/dexie.min.js",
      "js/background.js"
    ],
    "persistent": false
  },
  "content_scripts": [
    {
      "matches": [
        "<all_urls>"
      ],
      "all_frames": true,
      "js": [
        "js/vue.js",
        "js/content-script.js"
      ],
      "run_at": "document_end",
      "exclude_matches": [
        "*://*.goodwordguide.com/*"
      ]
    }
  ],
  "content_security_policy": "script-src 'self' 'unsafe-eval'; object-src 'self'",
  "web_accessible_resources": [
    "css/w-app.css",
    "js_src/vue.js",
    "pages/options.html"
  ],
  "permissions": [
    "activeTab",
    "alarms",
    "contextMenus",
    "storage"
  ],
  "update_url": "https://edge.microsoft.com/extensionwebstorebase/v1/crx"
}