Examine source code of OpenAI for Telegram

Inspect and view changes in OpenAI for Telegram 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,
  "name": "__MSG_extName__",
  "description": "__MSG_extDesc__",
  "default_locale": "en",
  "icons": {
    "128": "icons/telegram-gpt.png"
  },
  "background": {
    "service_worker": "js/background.js"
  },
  "action": {
    "default_title": "GPT for Telegram",
    "default_icon": {
      "128": "icons/telegram-gpt.png"
    }
  },
  "content_scripts": [
    {
      "matches": [
        "*://web.telegram.org/*"
      ],
      "js": [
        "js/content-script.js"
      ],
      "css": [],
      "run_at": "document_idle"
    },
    {
      "matches": [
        "*://*.openai.com/*"
      ],
      "js": [
        "js/chatgpt-script.js"
      ],
      "css": [],
      "run_at": "document_idle"
    }
  ],
  "web_accessible_resources": [
    {
      "resources": [
        "icons/*"
      ],
      "matches": [
        "*://web.telegram.org/*",
        "*://*.openai.com/*"
      ]
    }
  ],
  "commands": {
    "toggle_TelegramChatGPT": {
      "description": "Run TelegramChatGPT on the current page.",
      "suggested_key": {
        "chromeos": "Ctrl+M",
        "default": "Ctrl+M",
        "linux": "Ctrl+M",
        "mac": "Command+M",
        "windows": "Ctrl+M"
      }
    }
  },
  "permissions": [
    "storage",
    "activeTab"
  ],
  "host_permissions": [
    "*://web.telegram.org/*",
    "*://*.openai.com/*"
  ],
  "version": "1.0.1",
  "update_url": "https://edge.microsoft.com/extensionwebstorebase/v1/crx"
}