Vocabulary Everyday

Vocabulary Everyday

Learn Vocabulary Everywhere, Anytime

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 2,
  "name": "Vocabulary Everyday",
  "description": "Learn Vocabulary Everywhere, Anytime",
  "version": "2",
  "options_ui": {
    "page": "options.html",
    "chrome_style": true,
    "open_in_tab": true
  },
  "permissions": [
    "storage"
  ],
  "content_scripts": [
    {
      "matches": [
        "http://*/*",
        "https://*/*"
      ],
      "js": [
        "script.js"
      ],
      "css": [
        "vocab.css"
      ]
    }
  ]
}