Comment Helper for Google Docs

Comment Helper for Google Docs

Search Google Doc comments and review them from newest to oldest.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "description": "Search Google Doc comments and review them from newest to oldest.",
  "version": "0.1.8",
  "manifest_version": 3,
  "name": "Comment Helper for Google Docs",
  "options_page": "options.html",
  "background": {
    "service_worker": "background.bundle.js"
  },
  "action": {
    "default_popup": "options.html",
    "default_icon": "favicon-32.png"
  },
  "icons": {
    "128": "favicon-128.png"
  },
  "content_scripts": [
    {
      "matches": [
        "https://docs.google.com/document/*",
        "https://comment-helper.org/*"
      ],
      "js": [
        "react.production.min.js",
        "react-dom.production.min.js",
        "jQuery.js",
        "autosuggest.js",
        "contentScript.bundle.js"
      ],
      "css": [
        "content.styles.css"
      ]
    }
  ],
  "permissions": [
    "storage"
  ],
  "_comment": "Remove the 'devtools_page' line to avoid the permissions warning 'Read and change all your data on all websites'",
  "host_permissions": [
    "https://docs.google.com/document/*",
    "https://comment-helper.org/*"
  ],
  "web_accessible_resources": [
    {
      "resources": [
        "content.styles.css",
        "icon-128.png",
        "icon-34.png"
      ],
      "matches": [
        "https://docs.google.com/*"
      ]
    }
  ]
}