Corgi AI - Your language teacher

Corgi AI - Your language teacher

Language Learning powered by ChatGPT

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 3,
  "name": "__MSG_appTitle__",
  "version": "1.6.9",
  "description": "__MSG_appDesc__",
  "permissions": [
    "tabs",
    "storage",
    "unlimitedStorage"
  ],
  "host_permissions": [
    "http://*/*",
    "https://*/*"
  ],
  "author": "<[email protected]>",
  "background": {
    "service_worker": "background.bundle.js"
  },
  "action": {
    "default_title": "__MSG_appTitle__",
    "default_popup": "start.html",
    "default_icon": {
      "16": "icons/16-off.png",
      "48": "icons/48-off.png",
      "128": "icons/128-off.png"
    }
  },
  "content_scripts": [
    {
      "matches": [
        "<all_urls>"
      ],
      "run_at": "document_end",
      "js": [
        "popup/js/vendor/handlebars.min.js",
        "popup/js/vendor/handlebars-helpers.js",
        "templates_compiled.js",
        "content.bundle.js"
      ]
    }
  ],
  "default_locale": "en",
  "icons": {
    "16": "icons/16.png",
    "48": "icons/128.png",
    "128": "icons/256.png",
    "256": "icons/256.png"
  },
  "web_accessible_resources": [
    {
      "resources": [
        "popup/content_script.html",
        "*.html",
        "*.png",
        "*.eot",
        "*.woff",
        "*.woff2",
        "*.ttf",
        "*.svg"
      ],
      "matches": [
        "<all_urls>"
      ]
    }
  ]
}