Brainly Homework Help

Brainly Homework Help

Find solutions for any school question with a Knowledge Base of over 250 million answers and explanations.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 3,
  "name": "Brainly Homework Help",
  "version": "3.4.4",
  "description": "Find solutions for any school question with a Knowledge Base of over 250 million answers and explanations.",
  "icons": {
    "128": "icon128.png"
  },
  "background": {
    "service_worker": "service-worker.js"
  },
  "content_scripts": [
    {
      "run_at": "document_start",
      "matches": [
        "https://*.google.com/search?*"
      ],
      "js": [
        "prefetch-script.js"
      ]
    },
    {
      "run_at": "document_end",
      "matches": [
        "https://*.google.com/search?*"
      ],
      "css": [
        "content-script.css"
      ],
      "js": [
        "content-script.js"
      ]
    },
    {
      "run_at": "document_end",
      "matches": [
        "http://*/*",
        "https://*/*"
      ],
      "css": [
        "content-script-all.css",
        "global-styles.css"
      ],
      "js": [
        "content-script-all.js"
      ]
    },
    {
      "run_at": "document_start",
      "matches": [
        "https://*.brainly.com/*"
      ],
      "js": [
        "presence-script.js"
      ]
    },
    {
      "run_at": "document_start",
      "matches": [
        "https://docs.google.com/document/*"
      ],
      "js": [
        "google-docs-proxy.js"
      ],
      "world": "MAIN"
    }
  ],
  "host_permissions": [
    "https://chrome-extensions.brainly.com/"
  ],
  "permissions": [
    "storage",
    "contextMenus",
    "scripting",
    "activeTab"
  ],
  "web_accessible_resources": [
    {
      "resources": [
        "*.woff2",
        "*.woff",
        "content-script-selection.css",
        "content-script-all.css"
      ],
      "matches": [
        "http://*/*",
        "https://*/*"
      ]
    }
  ]
}