BoostVocab

BoostVocab

Boost Vocab extension, find word definitions, synonyms and antonyms instantly. Create lists and flash cards directly from browser.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "BoostVocab",
  "version": "1.0.34",
  "manifest_version": 3,
  "description": "Boost Vocab extension, find word definitions, synonyms and antonyms instantly. Create lists and flash cards directly from browser.",
  "host_permissions": [
    "<all_urls>"
  ],
  "permissions": [
    "storage",
    "activeTab",
    "contextMenus",
    "host permission"
  ],
  "action": {
    "default_popup": "index.html",
    "default_icon": {
      "32": "img/favicon.png",
      "128": "img/favicon128.png"
    }
  },
  "icons": {
    "32": "img/favicon.png",
    "128": "img/icon128.png"
  },
  "content_scripts": [
    {
      "matches": [
        "<all_urls>"
      ],
      "js": [
        "js/html.js",
        "js/config.js",
        "js/jquery.js",
        "js/script.js"
      ],
      "css": [
        "style/style.css"
      ]
    }
  ],
  "background": {
    "service_worker": "js/bg.js",
    "type": "module"
  },
  "web_accessible_resources": [
    {
      "matches": [
        "<all_urls>"
      ],
      "resources": [
        "img/logo.png",
        "img/boost-logo.png",
        "img/scan-icon.png",
        "img/panel_setting.png",
        "img/book.png",
        "level/levelObj.js"
      ]
    }
  ]
}