TypeGenieAI

TypeGenieAI

The cutting-edge browser extension that brings the power of AI-generated text to your fingertips.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "manifest_version": 3,
  "minimum_chrome_version": "88",
  "name": "TypeGenieAI",
  "version": "1.1.0",
  "description": "The cutting-edge browser extension that brings the power of AI-generated text to your fingertips.",
  "icons": {
    "16": "src/icon/icon16.png",
    "48": "src/icon/icon48-chrome.png",
    "128": "src/icon/icon128.png"
  },
  "action": {
    "default_icon": "src/icon/icon48-chrome.png",
    "default_title": "TypeGenieAI",
    "default_popup": "src/popup.html"
  },
  "permissions": [
    "contextMenus",
    "storage"
  ],
  "background": {
    "service_worker": "src/js/TypeGenie-background.js"
  },
  "externally_connectable": {
    "matches": [
      "https://*.typegenieai.com/*"
    ]
  },
  "content_scripts": [
    {
      "all_frames": false,
      "js": [
        "src/js/TypeGenie-checker.js"
      ],
      "match_about_blank": true,
      "matches": [
        "<all_urls>"
      ],
      "exclude_matches": [
        "*://typegenieai.com/*",
        "*://*.typegenieai.com/*"
      ],
      "run_at": "document_idle"
    }
  ],
  "update_url": "https://edge.microsoft.com/extensionwebstorebase/v1/crx"
}