Witty - your inclusive writing assistant

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.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 2,
  "name": "__MSG_appName__",
  "version": "1.32.0",
  "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",
    "http://*/*",
    "https://*/*"
  ],
  "content_security_policy": "script-src 'self'; object-src 'self'",
  "author": "Witty Works",
  "options_ui": {
    "page": "options.html",
    "open_in_tab": true
  },
  "minimum_chrome_version": "49",
  "browser_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": {
    "scripts": [
      "js/background.bundle.js"
    ],
    "persistent": false
  },
  "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": [
    "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"
  ]
}