English Vocabulary Builder

English Vocabulary Builder

Boost your English vocabulary easily as you browse the web, and sync with your phone for learning anywhere!

Merlin
Additional files are visible only to premium users

manifest.json


{
  "manifest_version": 3,
  "name": "English Vocabulary Builder",
  "version": "1.5.3",
  "description": "Boost your English vocabulary easily as you browse the web, and sync with your phone for learning anywhere!",
  "permissions": [
    "storage",
    "tts"
  ],
  "action": {
    "default_icon": "assets/icons/icon.png",
    "default_popup": "src/popup/popup.html",
    "default_title": "English Vocabulary Builder"
  },
  "background": {
    "service_worker": "dist/background.bundle.js"
  },
  "content_scripts": [
    {
      "matches": [
        "http://*/*",
        "https://*/*"
      ],
      "js": [
        "dist/content.bundle.js"
      ]
    }
  ],
  "icons": {
    "16": "assets/icons/icon16.png",
    "48": "assets/icons/icon48.png",
    "128": "assets/icons/icon128.png"
  },
  "web_accessible_resources": [
    {
      "matches": [
        "<all_urls>"
      ],
      "resources": [
        "assets/css/*.css",
        "assets/icons/*.png"
      ]
    }
  ],
  "update_url": "https://edge.microsoft.com/extensionwebstorebase/v1/crx"
}