VoiceTube Dictionary

VoiceTube Dictionary

Improve your English reading skills with our clickable definition feature ! Exclusive video example helps your learn and memorize!

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 2,
  "name": "__MSG_extName__",
  "description": "__MSG_extDescription__",
  "default_locale": "en",
  "permissions": [
    "cookies",
    "storage",
    "contextMenus",
    "https://*.voicetube.com/"
  ],
  "icons": {
    "16": "icons/16.png",
    "32": "icons/32.png",
    "48": "icons/48.png",
    "128": "icons/128.png",
    "256": "icons/256.png"
  },
  "background": {
    "scripts": [
      "js/background.js"
    ],
    "persistent": false
  },
  "content_scripts": [
    {
      "js": [
        "js/content-script.js"
      ],
      "css": [
        "css/content-script.css"
      ],
      "matches": [
        "<all_urls>"
      ],
      "exclude_matches": [
        "*://*.voicetube.com/*",
        "*://docs.google.com/*"
      ]
    }
  ],
  "browser_action": {
    "default_popup": "popup.html",
    "default_title": "__MSG_extName__",
    "default_icon": "icons/32.png"
  },
  "options_page": "preference.html",
  "omnibox": {
    "keyword": "vt"
  },
  "commands": {
    "_execute_browser_action": {
      "suggested_key": {
        "windows": "Alt+V",
        "mac": "Alt+V",
        "chromeos": "Alt+V",
        "linux": "Alt+V"
      }
    }
  },
  "content_security_policy": "script-src 'self' https://www.google-analytics.com/analytics.js; object-src 'self'",
  "version": "3.1.2"
}