Burning Vocabulary - Learn words from reading

Burning Vocabulary - Learn words from reading

Master vocabulary effortlessly with the full cycle process.

Additional files are visible only to premium users

manifest.json


{
  "name": "__MSG_appName__",
  "version": "3.11.181",
  "manifest_version": 3,
  "description": "__MSG_appDescription__",
  "homepage_url": "https://burningvocabulary.com",
  "icons": {
    "16": "icons/icon-16.png",
    "48": "icons/icon-48.png",
    "128": "icons/icon-128.png"
  },
  "default_locale": "en",
  "background": {
    "service_worker": "background.js"
  },
  "permissions": [
    "tabs",
    "storage",
    "contextMenus",
    "alarms",
    "notifications",
    "scripting"
  ],
  "host_permissions": [
    "<all_urls>",
    "*://*/*"
  ],
  "options_ui": {
    "page": "dashboard.html?from=option"
  },
  "content_scripts": [
    {
      "matches": [
        "http://*/*",
        "https://*/*",
        "ftp://*/*",
        "file://*/*"
      ],
      "css": [
        "content_script.css"
      ],
      "js": [
        "content_script.js"
      ],
      "run_at": "document_idle",
      "all_frames": true
    }
  ],
  "action": {
    "default_icon": {
      "16": "icons/icon-16.png",
      "48": "icons/icon-48.png"
    },
    "default_title": "Burning Vocabulary"
  },
  "web_accessible_resources": [
    {
      "resources": [
        "local-pdf-viewer.html",
        "dashboard.html",
        "icons/icon-128.png",
        "content_script.js",
        "content_script.css"
      ],
      "matches": [
        "<all_urls>"
      ]
    }
  ],
  "content_security_policy": {
    "extension_pages": "script-src 'self'; object-src 'self'"
  },
  "update_url": "https://edge.microsoft.com/extensionwebstorebase/v1/crx"
}