WriteHuman - History Replay for Google Docs

WriteHuman - History Replay for Google Docs

WriteHuman lets you watch the writing of any Google Doc (that you’re given access to, or the editor of) from start to finish.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "description": "WriteHuman lets you watch the writing of any Google Doc (that you’re given access to, or the editor of) from start to finish. ",
  "version": "1.0.1",
  "manifest_version": 3,
  "name": "WriteHuman - History Replay for Google Docs",
  "background": {
    "service_worker": "background.bundle.js"
  },
  "action": {
    "default_popup": "popup.html",
    "default_icon": "icon-34.png"
  },
  "icons": {
    "128": "icon-128.png"
  },
  "content_scripts": [
    {
      "matches": [
        "https://docs.google.com/document/d/*"
      ],
      "js": [
        "contentScript.bundle.js"
      ]
    }
  ],
  "permissions": [
    "activeTab"
  ],
  "web_accessible_resources": [
    {
      "resources": [
        "icon-128.png",
        "icon-34.png",
        "processing.html"
      ],
      "matches": [
        "https://docs.google.com/*"
      ]
    }
  ]
}