Examine source code of TypeGenieAI

Inspect and view changes in TypeGenieAI source codes across current and past versions
Premium users can view and search full source code, and see the source code differences between two versions.
Upgrade to premium
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"
}