Wordzzz – Learn language with video subs

Wordzzz – Learn language with video subs

Boost your language learning with Wordzzz

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "__MSG_name__",
  "short_name": "Wordzzz",
  "description": "__MSG_Description__",
  "version": "2.0.0",
  "default_locale": "en",
  "content_scripts": [
    {
      "run_at": "document_idle",
      "matches": [
        "*://*/*"
      ],
      "all_frames": true,
      "js": [
        "./js/vendor.js",
        "./js/content.js"
      ],
      "css": [
        "./styles/fonts.css",
        "./styles/content.css"
      ]
    }
  ],
  "content_security_policy": "child-src 'self' blob:; worker-src 'self' blob:; script-src 'self' https://cdn.logrocket.io https://cdn.lr-ingest.io https://www.google-analytics.com https://*.amplitude.com; object-src 'self';",
  "web_accessible_resources": [
    "*.ttf",
    "*.eot",
    "*.woff",
    "*.woff2",
    "images/*.svg"
  ],
  "permissions": [
    "activeTab",
    "tabs",
    "storage",
    "notifications",
    "contextMenus"
  ],
  "optional_permissions": [
    "*://*/*"
  ],
  "browser_action": {
    "default_title": "__MSG_name__",
    "default_popup": "./pages/popup.html",
    "default_icon": "./images/icon_logo.png"
  },
  "icons": {
    "16": "./images/icon_logo.png",
    "128": "./images/icon_logo128.png"
  },
  "background": {
    "scripts": [
      "./js/vendor.js",
      "./js/background.js"
    ],
    "persistent": false
  },
  "options_ui": {
    "page": "./pages/options.html",
    "open_in_tab": true
  },
  "manifest_version": 2
}