Revision History

Revision History

Built for teachers - show students' history of edits in a Google Doc

Merlin
Additional files are visible only to premium users

manifest.json


{
  "version": "1.1.1",
  "manifest_version": 3,
  "name": "Revision History",
  "description": "Built for teachers - show students' history of edits in a Google Doc",
  "action": {
    "default_popup": "js/index.html",
    "default_title": "Revision History"
  },
  "content_scripts": [
    {
      "matches": [
        "*://docs.google.com/*",
        "*://classroom.google.com/*"
      ],
      "all_frames": true,
      "js": [
        "js/content.js"
      ]
    }
  ],
  "background": {
    "service_worker": "js/background.js"
  },
  "web_accessible_resources": [
    {
      "resources": [
        "images/*"
      ],
      "matches": [
        "*://docs.google.com/*"
      ]
    }
  ],
  "icons": {
    "16": "images/black-logo-16.png",
    "32": "images/black-logo-32.png",
    "48": "images/black-logo-48.png",
    "128": "images/black-logo-128.png"
  },
  "permissions": [
    "storage"
  ],
  "update_url": "https://edge.microsoft.com/extensionwebstorebase/v1/crx"
}