VocaDict - Search Once, Remember Forever

VocaDict - Search Once, Remember Forever

Smart dictionary saves your new words with context and reminds you to learn everyday.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "VocaDict - Search Once, Remember Forever",
  "version": "1.0.5",
  "description": "Smart dictionary saves your new words with context and reminds you to learn everyday.",
  "author": "yura",
  "manifest_version": 2,
  "icons": {
    "16": "icons/16.png",
    "128": "icons/128.png"
  },
  "permissions": [
    "background",
    "unlimitedStorage",
    "storage"
  ],
  "browser_action": {
    "default_title": "title",
    "default_popup": "pages/popup.html"
  },
  "background": {
    "page": "pages/background.html"
  },
  "devtools_page": "pages/devtools.html",
  "options_page": "pages/popup.html",
  "chrome_url_overrides": {
    "newtab": "pages/simple-tab.html"
  },
  "content_scripts": [
    {
      "js": [
        "js/inject.js"
      ],
      "run_at": "document_end",
      "matches": [
        "<all_urls>"
      ],
      "all_frames": true
    }
  ],
  "content_security_policy": "script-src 'self' 'unsafe-eval' https://ssl.google-analytics.com https://www.google-analytics.com https://www.googletagmanager.com https://static.hotjar.com https://script.hotjar.com; object-src 'self'",
  "web_accessible_resources": [
    "js/inject.js",
    "images/icon-speaker.svg",
    "images/logo.svg"
  ]
}