Undetectable AI - Human Auto Typer

Undetectable AI - Human Auto Typer

🌟 Undetectable AI Human Typer Tool for Google Docs - Chrome Extension 🌟 🚀 Revolutionize Your Work with AI-Powered Typing…

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 3,
  "name": "Undetectable AI - Human Auto Typer",
  "version": "2.2.0",
  "permissions": [
    "storage"
  ],
  "background": {
    "service_worker": "js/background.js"
  },
  "content_scripts": [
    {
      "matches": [
        "https://undetectable.ai/callback_extension*"
      ],
      "js": [
        "js/listener.js"
      ]
    },
    {
      "matches": [
        "https://docs.google.com/document/d/*"
      ],
      "js": [
        "js/content.js"
      ],
      "css": [
        "browser_css/fonts.css"
      ],
      "run_at": "document_end"
    }
  ],
  "web_accessible_resources": [
    {
      "resources": [
        "fonts/*",
        "js/*",
        "browser_css/*",
        "css/*"
      ],
      "matches": [
        "https://docs.google.com/*"
      ]
    }
  ],
  "externally_connectable": {
    "ids": [
      "*"
    ]
  }
}