LearnWithAI

LearnWithAI

We collect educational app data for Learn with AI to improve our coaching for students.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 3,
  "name": "LearnWithAI",
  "description": "We collect educational app data for Learn with AI to improve our coaching for students.",
  "version": "1.0.5",
  "icons": {
    "16": "/assets/icons/learn-with-ai-16.png",
    "64": "/assets/icons/learn-with-ai-64.png",
    "128": "/assets/icons/learn-with-ai-128.png"
  },
  "permissions": [
    "activeTab",
    "alarms",
    "background",
    "contextMenus",
    "identity",
    "identity.email",
    "storage",
    "unlimitedStorage",
    "declarativeNetRequest",
    "idle",
    "tabs",
    "scripting",
    "webRequest",
    "nativeMessaging",
    "notifications"
  ],
  "host_permissions": [
    "<all_urls>"
  ],
  "action": {
    "default_popup": "index.html"
  },
  "background": {
    "service_worker": "index.js"
  },
  "content_scripts": [
    {
      "matches": [
        "<all_urls>"
      ],
      "js": [
        "content-script.js"
      ],
      "run_at": "document_start"
    },
    {
      "matches": [
        "https://*.ixl.com/*",
        "https://*.readtheory.org/*",
        "https://*.khanacademy.org/*"
      ],
      "js": [
        "apollo-client-script.js"
      ],
      "run_at": "document_start"
    },
    {
      "matches": [
        "https://*.ixl.com/*"
      ],
      "js": [
        "learning-input-validation-script.js"
      ],
      "run_at": "document_start"
    },
    {
      "matches": [
        "https://*.duolingo.com/*",
        "https://*.ixl.com/*"
      ],
      "js": [
        "third-party-app-credentials-popup-script.js"
      ],
      "run_at": "document_start"
    }
  ],
  "declarative_net_request": {
    "rule_resources": [
      {
        "id": "ruleset 1",
        "enabled": true,
        "path": "rules.json"
      }
    ]
  },
  "web_accessible_resources": [
    {
      "resources": [
        "*.css",
        "*.jpeg",
        "*.js",
        "*.js.map",
        "*.json",
        "*.mp4",
        "*.png",
        "*.svg",
        "*.ttf",
        "assets/*"
      ],
      "matches": [
        "<all_urls>"
      ]
    }
  ]
}