Reading for Vocabulary

Reading for Vocabulary

This extension enables translation lookup with quizzes to facilitate vocabulary learning while reading a foreign language.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 2,
  "name": "Reading for Vocabulary",
  "description": "This extension enables translation lookup with quizzes to facilitate vocabulary learning while reading a foreign language.",
  "version": "1.3",
  "author": "Jonathan Hudgins <[email protected]>",
  "background": {
    "scripts": [
      "background.js"
    ],
    "persistent": false
  },
  "content_scripts": [
    {
      "matches": [
        "http://*/*",
        "file://*/*"
      ],
      "css": [
        "contentscript.css"
      ],
      "js": [
        "contentscript.js",
        "xregexp-all.js"
      ],
      "run_at": "document_end",
      "all_frames": true
    }
  ],
  "permissions": [
    "activeTab",
    "tabs",
    "notifications",
    "storage",
    "webRequestBlocking",
    "https://glosbe.com/gapi/translate?*"
  ],
  "web_accessible_resources": [
    "options.html"
  ],
  "options_page": "options.html",
  "icons": {
    "16": "icon16.png",
    "32": "icon32.png",
    "48": "icon48.png",
    "128": "icon128.png"
  }
}