Examine source code of Edficiency+

Inspect and view changes in Edficiency+ source codes across current and past versions
Premium users can view and search full source code, and see the source code differences between two versions.
Upgrade to premium
manifest.json
{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "Edficiency+",
  "description": "Unlock Edficiency's maximum potential",
  "version": "3.0.1",
  "permissions": [
    "declarativeNetRequestWithHostAccess"
  ],
  "host_permissions": [
    "https://*.edf.school/*"
  ],
  "declarative_net_request": {
    "rule_resources": [
      {
        "id": "ruleset_1",
        "enabled": true,
        "path": "rules.json"
      }
    ]
  },
  "manifest_version": 3,
  "icons": {
    "16": "/icons/icon-16.png",
    "32": "/icons/icon-32.png",
    "48": "/icons/icon-48.png",
    "128": "/icons/icon-128.png"
  },
  "content_scripts": [
    {
      "matches": [
        "https://*.edf.school/*"
      ],
      "js": [
        "injected-script.js"
      ],
      "css": [
        "bootstrap.min.css"
      ],
      "world": "MAIN",
      "run_at": "document_end"
    }
  ],
  "background": {
    "service_worker": "service-worker.js"
  },
  "action": {
    "default_title": "Open Tutorial"
  },
  "web_accessible_resources": [
    {
      "resources": [
        "fa-solid-900.woff2",
        "fa-regular-400.woff2"
      ],
      "matches": [
        "https://*.edf.school/*"
      ]
    }
  ]
}