Aidify

Aidify

Providing data on students’ writing process and time spent on Google Docs to verify student effort.

Merlin
Additional files are visible only to premium users

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.5",
  "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"
  }
}