Editool - Smart feedback

Editool - Smart feedback

Save time when correcting student assignments with the critically acclaimed feedback tool, Editool.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "__MSG_extension_name__",
  "version": "1.9",
  "default_locale": "en",
  "description": "__MSG_extension_description__",
  "manifest_version": 3,
  "icons": {
    "16": "assets/images/icon-16.png",
    "48": "assets/images/icon-48.png",
    "128": "assets/images/icon-128.png"
  },
  "content_security_policy": {},
  "permissions": [
    "storage"
  ],
  "content_scripts": [
    {
      "matches": [
        "*://docs.google.com/document/*"
      ],
      "js": [
        "content-scripts/docs.js"
      ],
      "css": [
        "assets/css/docs.css"
      ]
    }
  ],
  "web_accessible_resources": [
    {
      "resources": [
        "assets/images/*"
      ],
      "matches": [
        "https://docs.google.com/*"
      ]
    }
  ]
}