Witty - your inclusive writing assistant

Writing inclusively in a consistent manner is hard. It's easy with Witty writing assistant. Make the world inclusive. For everyone.
Premium users can view and search full source code, and see the source code differences between two versions.
Upgrade to premium
manifest.json
{
  "manifest_version": 3,
  "name": "__MSG_appName__",
  "version": "1.33.7",
  "default_locale": "en",
  "icons": {
    "16": "assets/icons/icon16.png",
    "32": "assets/icons/icon32.png",
    "48": "assets/icons/icon48.png",
    "128": "assets/icons/icon128.png"
  },
  "description": "__MSG_appDesc__",
  "homepage_url": "https://witty.works",
  "short_name": "Witty",
  "permissions": [
    "storage",
    "scripting"
  ],
  "host_permissions": [
    "http://*/*",
    "https://*/*"
  ],
  "content_security_policy": {
    "extension_pages": "script-src 'self'; object-src 'self'"
  },
  "author": "Witty Works",
  "options_ui": {
    "page": "options.html",
    "open_in_tab": true
  },
  "minimum_chrome_version": "88",
  "action": {
    "default_popup": "popup.html",
    "default_icon": {
      "16": "assets/icons/icon16.png",
      "32": "assets/icons/icon32.png",
      "48": "assets/icons/icon48.png"
    },
    "default_title": "Witty",
    "chrome_style": false
  },
  "background": {
    "service_worker": "js/background.bundle.js",
    "type": "module"
  },
  "content_scripts": [
    {
      "matches": [
        "http://*/*",
        "https://*/*"
      ],
      "js": [
        "js/contentScript.bundle.js"
      ],
      "css": [
        "css/contentScript.css"
      ],
      "all_frames": true
    },
    {
      "matches": [
        "https://docs.google.com/document/*"
      ],
      "js": [
        "assets/googleDocsSupport.js"
      ],
      "all_frames": false,
      "run_at": "document_start"
    },
    {
      "matches": [
        "https://docs.google.com/document/*",
        "https://mail.google.com/mail/*"
      ],
      "css": [
        "assets/gmailSpellCheck.css"
      ]
    }
  ],
  "web_accessible_resources": [
    {
      "resources": [
        "options.html",
        "assets/icons/w-logo-wire-color.svg",
        "assets/icons/popover/ignore.svg",
        "assets/icons/popover/arrow.svg",
        "assets/icons/popover/settings.svg",
        "assets/googleDocsSpellCheck.js"
      ],
      "matches": [
        "<all_urls>"
      ]
    }
  ],
  "update_url": "https://edge.microsoft.com/extensionwebstorebase/v1/crx"
}