Writefull for Overleaf

Writefull for Overleaf

Writefull is automated proofreading for academic writing. This version of Writefull provides support for Overleaf.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 2,
  "name": "Writefull for Overleaf",
  "version": "2.2.0",
  "icons": {
    "48": "assets/icon48.png",
    "128": "assets/icon.png"
  },
  "description": "Writefull is automated proofreading for academic writing. This version of Writefull provides support for Overleaf.",
  "externally_connectable": {
    "matches": [
      "https://*.overleaf.com/project/*",
      "https://*.overleaf.com/user/settings*"
    ]
  },
  "content_security_policy": "script-src 'self' 'unsafe-eval'; object-src 'self'",
  "content_scripts": [
    {
      "js": [
        "overleaf.js"
      ],
      "all_frames": true,
      "run_at": "document_start",
      "matches": [
        "https://*.overleaf.com/project/*"
      ]
    },
    {
      "js": [
        "overleaf_settings.js"
      ],
      "all_frames": true,
      "run_at": "document_start",
      "matches": [
        "https://*.overleaf.com/user/settings*"
      ]
    }
  ],
  "web_accessible_resources": [
    "assets/icon.png"
  ]
}