Reelingua - Language Learning Copilot

Reelingua - Language Learning Copilot

Elevate your language learning skills while browsing the web with our AI copilot.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 3,
  "name": "Reelingua - Language Learning Copilot",
  "version": "0.1.0",
  "description": "Elevate your language learning skills while browsing the web with our AI copilot.",
  "permissions": [
    "contextMenus",
    "cookies",
    "identity",
    "identity.email",
    "storage"
  ],
  "host_permissions": [
    "https://staging.reelingua.com/",
    "https://reelingua.com/"
  ],
  "action": {
    "default_popup": "popup/base/base.html"
  },
  "content_scripts": [
    {
      "matches": [
        "<all_urls>"
      ],
      "js": [
        "lib/eventHandler.js",
        "contentScript/contentScript.js",
        "lib/helper.js",
        "config/constants.js",
        "tooltip/tooltip.js"
      ]
    }
  ],
  "background": {
    "service_worker": "background/background.js"
  },
  "web_accessible_resources": [
    {
      "resources": [
        "tooltip/tooltip.css",
        "tooltip/tooltip.html"
      ],
      "matches": [
        "<all_urls>"
      ]
    }
  ],
  "icons": {
    "8": "assets/icons/8w.png",
    "16": "assets/icons/16w.png",
    "32": "assets/icons/32w.png",
    "64": "assets/icons/64w.png",
    "128": "assets/icons/128w.png"
  }
}