Voca-Highlighter

Voca-Highlighter

Mark and rate words you don't know based on difficulty.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "Voca-Highlighter",
  "version": "0.1.3",
  "description": "Mark and rate words you don't know based on difficulty.",
  "content_scripts": [
    {
      "matches": [
        "<all_urls>"
      ],
      "all_frames": true,
      "run_at": "document_end",
      "css": [
        "frontEnd/style.css"
      ],
      "js": [
        "frontEnd/highLighter.js",
        "frontEnd/frontEnd.js",
        "frontEnd/storage.js"
      ]
    }
  ],
  "background": {
    "page": "background/background.html",
    "persistent": true
  },
  "browser_action": {
    "default_popup": "popup/popup.html",
    "default_icon": {
      "16": "img/icons/marker16.png",
      "32": "img/icons/marker32.png",
      "48": "img/icons/marker48.png",
      "128": "img/icons/marker128.png"
    },
    "default_title": "RateIt-Highlighter"
  },
  "icons": {
    "16": "img/icons/marker16.png",
    "32": "img/icons/marker32.png",
    "48": "img/icons/marker48.png",
    "128": "img/icons/marker128.png"
  },
  "web_accessible_resources": [
    "img/buttons/*"
  ],
  "permissions": [
    "contextMenus",
    "storage",
    "tabs",
    "activeTab",
    "http://*/*",
    "https://*/*"
  ],
  "manifest_version": 2
}