Lexios

Lexios

Learn vocabulary in a new language effortlessly while browsing the web.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "version": "1.3.3",
  "name": "__MSG_appName__",
  "description": "__MSG_appDesc__",
  "default_locale": "en",
  "manifest_version": 2,
  "icons": {
    "128": "assets/images/logo/logo_128.png"
  },
  "content_scripts": [
    {
      "matches": [
        "<all_urls>"
      ],
      "run_at": "document_start",
      "js": [
        "browser-polyfill.min.js",
        "content.js"
      ],
      "css": [
        "content/Popup.css"
      ]
    }
  ],
  "browser_action": {
    "default_popup": "index.html",
    "default_title": "Lexios"
  },
  "background": {
    "scripts": [
      "background.js",
      "browser-polyfill.min.js"
    ]
  },
  "content_security_policy": "script-src 'self' https://apis.google.com https://*.firebasedatabase.app; object-src 'self'; img-src 'self' https://www.gstatic.com/",
  "permissions": [
    "storage",
    "unlimitedStorage",
    "activeTab",
    "<all_urls>"
  ],
  "web_accessible_resources": [
    "assets/fonts/roboto-v20-latin-300.woff2",
    "assets/fonts/roboto-v20-latin-500.woff2",
    "assets/fonts/roboto-v20-latin-700.woff2",
    "assets/fonts/roboto-v20-latin-regular.woff"
  ],
  "browser_specific_settings": {
    "gecko": {
      "id": "[email protected]"
    }
  }
}