Wordology

Wordology

Adds a calque to foreign-language web-pages to aid language learning.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 2,
  "name": "Wordology",
  "description": "Adds a calque to foreign-language web-pages to aid language learning.",
  "version": "2",
  "icons": {
    "48": "./icons/icon48.png",
    "96": "./icons/icon96.png"
  },
  "background": {
    "scripts": [
      "browser-polyfill.min.js",
      "strings.js",
      "OptionsManager.js",
      "messages.js",
      "Dictionary.js",
      "DictionaryFetcherBackground.js",
      "TabState.js",
      "ToggleManagerBackground.js",
      "background.js"
    ]
  },
  "content_scripts": [
    {
      "matches": [
        "*://*/*",
        "file:///*/*"
      ],
      "css": [
        "vex/vex-theme-custom.css",
        "vex/vex_custom.css",
        "WordEditDialog.css",
        "WordElement.css"
      ],
      "js": [
        "browser-polyfill.min.js",
        "vex/vex.combined.min.js",
        "strings.js",
        "OptionsManager.js",
        "messages.js",
        "wordmatching.js",
        "WordEditDialog.js",
        "DictionaryFetcherPage.js",
        "WordElement.js",
        "WordManager.js",
        "ToggleManagerPage.js",
        "content_script.js"
      ],
      "run_at": "document_idle"
    }
  ],
  "browser_action": {
    "default_icon": "./icons/icon_inactive_32.png"
  },
  "options_ui": {
    "open_in_tab": true,
    "page": "./settings/index.html"
  },
  "permissions": [
    "*://*/*",
    "webNavigation",
    "storage"
  ]
}