Examine source code of Aidify

Inspect and view changes in Aidify 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": "Aidify",
  "description": "Providing data on students’ writing process and time spent on Google Docs to verify student effort.",
  "permissions": [
    "storage"
  ],
  "version": "1.7",
  "manifest_version": 3,
  "action": {
    "default_popup": "index.html",
    "default_icon": "aCheckIcon.png"
  },
  "background": {
    "service_worker": "background.js"
  },
  "content_scripts": [
    {
      "js": [
        "content.js"
      ],
      "matches": [
        "https://docs.google.com/document/*"
      ],
      "all_frames": true,
      "match_about_blank": true
    }
  ],
  "web_accessible_resources": [
    {
      "resources": [
        "data.html",
        "dataPage.js"
      ],
      "matches": [
        "<all_urls>"
      ]
    }
  ],
  "icons": {
    "128": "aCheckIcon.png"
  }
}