EachWord Translator - expand your vocabulary

EachWord Translator - expand your vocabulary

Add new words to the dictionary and they will be occasionally shown as cards.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 2,
  "name": "EachWord Translator - expand your vocabulary",
  "short_name": "EachWord Translator",
  "version": "2.0.5",
  "description": "__MSG_description__",
  "default_locale": "en",
  "icons": {
    "16": "images/icons/icon16.png",
    "32": "images/icons/icon32.png",
    "48": "images/icons/icon48.png",
    "128": "images/icons/icon128.png"
  },
  "browser_action": {
    "default_icon": {
      "19": "images/default_icons/icon19.png",
      "38": "images/default_icons/icon38.png"
    },
    "default_title": "EachWord",
    "default_popup": "popup.html"
  },
  "content_scripts": [
    {
      "matches": [
        "*://*/*"
      ],
      "css": [
        "content.css"
      ],
      "js": [
        "common_functions.js",
        "content.js"
      ]
    }
  ],
  "background": {
    "scripts": [
      "libraries/jquery.min.js",
      "common_functions.js",
      "background.js"
    ],
    "persistent": true
  },
  "web_accessible_resources": [
    "images/*",
    "fonts/*"
  ],
  "content_security_policy": "script-src 'self' https://yastatic.net https://mc.yandex.ru; object-src 'self'",
  "options_page": "options.html",
  "author": "Maksim Kholyavchenko",
  "offline_enabled": true,
  "permissions": [
    "notifications",
    "unlimitedStorage",
    "contextMenus",
    "*://*/*"
  ]
}