QuillBot: AI Writing and Grammar Checker Tool

QuillBot: AI Writing and Grammar Checker Tool

Elevate your writing with QuillBot's AI-powered productivity tools: Grammar Checker, Paraphraser, AI writer, Summarizer, and more!

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "__MSG_extensionName__",
  "manifest_version": 3,
  "version": "3.51.1",
  "default_locale": "en",
  "description": "__MSG_extensionDescription__",
  "icons": {
    "16": "assets/images/logo-16.png",
    "48": "assets/images/logo-48.png",
    "128": "assets/images/logo-128.png"
  },
  "background": {
    "service_worker": "background.js"
  },
  "host_permissions": [
    "*://*/*",
    "https://quillbot.com/",
    "https://quillbot.com/*"
  ],
  "content_scripts": [
    {
      "world": "MAIN",
      "matches": [
        "https://docs.google.com/document/*"
      ],
      "js": [
        "main-world-injection.js"
      ],
      "run_at": "document_start",
      "css": []
    },
    {
      "matches": [
        "https://docs.google.com/document/*"
      ],
      "js": [
        "content-gdocs-pre.js"
      ],
      "run_at": "document_start",
      "css": []
    },
    {
      "matches": [
        "https://docs.google.com/document/*"
      ],
      "js": [
        "content-gdocs.js"
      ],
      "run_at": "document_idle",
      "css": [
        "assets/css/quillbot-fonts.css",
        "assets/css/gdocs-overrides.css"
      ]
    },
    {
      "js": [
        "quillbot-content.js"
      ],
      "matches": [
        "*://*.wordpress.com/*"
      ],
      "exclude_matches": [
        "https://docs.google.com/document/*"
      ],
      "run_at": "document_idle",
      "css": [
        "assets/css/quillbot-fonts.css"
      ],
      "match_origin_as_fallback": true,
      "all_frames": true
    },
    {
      "js": [
        "quillbot-content.js"
      ],
      "matches": [
        "*://mail.google.com/*"
      ],
      "exclude_matches": [
        "https://docs.google.com/document/*"
      ],
      "run_at": "document_idle",
      "css": [
        "assets/css/quillbot-fonts.css"
      ]
    },
    {
      "js": [
        "detect-editors.js"
      ],
      "exclude_matches": [
        "https://docs.google.com/document/*",
        "*://mail.google.com/*",
        "*://*.wordpress.com/*"
      ],
      "matches": [
        "*://*/*"
      ],
      "run_at": "document_idle",
      "css": [
        "assets/css/quillbot-fonts.css"
      ],
      "all_frames": true,
      "match_origin_as_fallback": true,
      "match_about_blank": true
    }
  ],
  "action": {
    "default_icon": "assets/images/logo.png",
    "default_popup": "popup.html",
    "default_title": "QuillBot"
  },
  "minimum_chrome_version": "88",
  "permissions": [
    "alarms",
    "cookies",
    "storage",
    "activeTab",
    "contextMenus",
    "notifications",
    "scripting",
    "sidePanel"
  ],
  "web_accessible_resources": [
    {
      "resources": [
        "quillClassic.js"
      ],
      "matches": [
        "*://*/*"
      ]
    },
    {
      "resources": [
        "assets/fonts/*",
        "assets/css/*",
        "assets/images/*"
      ],
      "matches": [
        "*://*/*"
      ]
    },
    {
      "resources": [
        "injection.js"
      ],
      "matches": [
        "*://*/*"
      ]
    }
  ],
  "externally_connectable": {
    "matches": [
      "https://*.coursehero.com/*",
      "https://*.quillbot.com/*",
      "https://*.quillbot.dev/*",
      "https://quillbot.com/*",
      "https://quillbot.dev/*"
    ]
  },
  "commands": {
    "paraphrase": {
      "description": "Invoke the paraphraser-saga on the text"
    }
  },
  "side_panel": {
    "default_path": "sidePanel.html"
  }
}