Vocab Master

Vocab Master

Reminds you vocabulary while you surfing.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 2,
  "name": "Vocab Master",
  "description": "Reminds you vocabulary while you surfing.",
  "version": "1.2.2",
  "author": "Ufuk Uzun",
  "background": {
    "persistent": true,
    "scripts": [
      "main.js",
      "js.cookie.js"
    ]
  },
  "browser_action": {
    "default_icon": "vocab-icon.png",
    "default_popup": "options.html"
  },
  "web_accessible_resources": [
    "intercepting-page.html"
  ],
  "permissions": [
    "http://*/*",
    "https://*/*",
    "webRequest",
    "webRequestBlocking"
  ],
  "icons": {
    "256": "vocab-icon.png"
  },
  "options_ui": {
    "page": "options.html",
    "chrome_style": true
  }
}