TextCloaker

TextCloaker

An extension to make your AI-written text undetectable by AI detectors, in development as of 05/05/23!

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 3,
  "name": "TextCloaker",
  "short_name": "TextCloaker - The Anti-AI Detector",
  "version": "1.1.2",
  "permissions": [
    "identity",
    "tabs",
    "activeTab"
  ],
  "author": "Graham Zemel",
  "description": "An extension to make your AI-written text undetectable by AI detectors, in development as of 05/05/23!",
  "icons": {
    "128": "image.png"
  },
  "oauth2": {
    "client_id": "487272841760-8uqoilr6b3qemqdrmae7jeo77edba0a9.apps.googleusercontent.com",
    "scopes": [
      "https://www.googleapis.com/auth/documents"
    ]
  },
  "action": {
    "default_title": "TextCloaker",
    "default_popup": "options.html"
  },
  "content_scripts": [
    {
      "matches": [
        "https://*/*"
      ],
      "include_globs": [
        "*docs.*",
        "*google.*",
        "*document*"
      ],
      "exclude_globs": [
        "*home*"
      ],
      "js": [
        "jquery-2.2.2.min.js"
      ]
    },
    {
      "matches": [
        "https://*/*"
      ],
      "include_globs": [
        "*docs.*",
        "*google.*",
        "*document*"
      ],
      "exclude_globs": [
        "*home*"
      ],
      "js": [
        "jquery-2.2.2.min.js",
        "obfuscator.js"
      ]
    }
  ],
  "web_accessible_resources": [
    {
      "resources": [
        "jquery-2.2.2.min.js",
        "obfuscator.js"
      ],
      "matches": [
        "https://*/*"
      ],
      "extension_ids": [
        "*"
      ]
    }
  ],
  "options_page": "options.html",
  "options_ui": {
    "page": "options.html"
  }
}