detoxifAI Toxic Comment Blocker

detoxifAI Toxic Comment Blocker

detoxifAI is a tool that can detect toxic language in Google Docs and in Gmail and provide instantaneous feedback by highlighting…

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 2,
  "name": "detoxifAI Toxic Comment Blocker",
  "version": "1.2.7",
  "content_scripts": [
    {
      "matches": [
        "https://mail.google.com/*"
      ],
      "js": [
        "content_gmail.js",
        "jquery-3.4.1.min.js"
      ]
    },
    {
      "matches": [
        "https://docs.google.com/*"
      ],
      "js": [
        "content_gdocs.js"
      ]
    }
  ],
  "background": {
    "scripts": [
      "background.js"
    ],
    "persistent": false
  },
  "browser_action": {
    "default_icon": "icon.png"
  }
}