Spanish Vocab

Spanish Vocab

Learn spanish vocabulary while you are surfing the web!

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "Spanish Vocab",
  "version": "0.2",
  "description": "Learn spanish vocabulary while you are surfing the web!",
  "icons": {
    "16": "images/spainflag16.png",
    "32": "images/spainflag32.png",
    "48": "images/spainflag48.png",
    "128": "images/spainflag128.png"
  },
  "permissions": [
    "storage"
  ],
  "background": {
    "scripts": [
      "background.js"
    ],
    "persistent": true
  },
  "page_action": {
    "default_icon": {
      "16": "images/spainflag16.png",
      "32": "images/spainflag32.png",
      "48": "images/spainflag48.png",
      "128": "images/spainflag128.png"
    }
  },
  "options_page": "options.html",
  "content_scripts": [
    {
      "matches": [
        "*://*/*"
      ],
      "js": [
        "display.js"
      ]
    }
  ],
  "manifest_version": 2
}