ChatGPT for Telegram

use this tool to get ChatGPT responses from any messages on Telegram.

ChatGPT for Telegramคืออะไร?

ChatGPT for Telegram เป็นส่วนขยายของ Chrome ที่พัฒนาโดย adtargetinghello และคุณลักษณะหลักของมันคือ "use this tool to get ChatGPT responses from any messages on Telegram."

ภาพหน้าจอของส่วนขยาย

screenshot
screenshot

ดาวน์โหลดไฟล์ CRX ของส่วนขยาย ChatGPT for Telegram

ดาวน์โหลดไฟล์ส่วนขยาย ChatGPT for Telegram ในรูปแบบ crx และติดตั้งส่วนขยาย Chrome ด้วยตนเองในเบราว์เซอร์หรือแชร์ไฟล์ crx กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย Chrome อย่างง่ายดาย

คำแนะนำในการใช้ส่วนขยาย

                        With this extension, just click Cmd/Ctrl+M, and you can get replies like chat on Telegram! Supported by OpenAI GPT.

Here's how it works:
✅Just select any online content.
✅Click Cmd+M (Mac) or Ctrl+M (Windows) or click the button on the page lower right corner to open box.
✅Click the switch icon,  extension will automatically jump to https://chat.openai.com/chat.
✅Click "Copy to " button on https://chat.openai.com/chat, extension help you copy GPT responses back to Telegram web page.
✅And voila! You'll get an 80% done reply at your fingertips.

ChatGPT For Telegram brings OpenAI's GPT-3 function to your browsing experience. GPT-3 For Telegram focuses on reliability and keeping up with the latest changes.
GPT is easily accessible by clicking the icon in the toolbar. A popup window will appear and you can start a conversation with OpenAI. Quickly access ChatGPT from the navigation bar by typing GPT and pressing space.
Get answers from the search results of any messages from Telegram groups or users.

On which browsers can extensions be used?
At present, our extension is only applicable to Google Chrome, Edge and any Chrome based browser. But we also have plans to integrate other browsers.

Note: ChatGPT For Telegram is an independent project and has no relationship to Telegram Inc or ChatGPT Inc.                    

ข้อมูลพื้นฐานของส่วนขยาย

ชื่อ ChatGPT for Telegram ChatGPT for Telegram
ID kijmncepdjeabghcjppndcgbogkfhbje
URL อย่างเป็นทางการ https://chromewebstore.google.com/detail/chatgpt-for-telegram/kijmncepdjeabghcjppndcgbogkfhbje
คำอธิบาย use this tool to get ChatGPT responses from any messages on Telegram.
ขนาดไฟล์ 1.48 MB
จำนวนการติดตั้ง 1,130
เวอร์ชันปัจจุบัน 1.0.2
อัปเดตครั้งล่าสุด 2024-01-08
วันที่เผยแพร่ 2023-03-05
คะแนน 3.50/5 รวมทั้งหมด 2 คะแนน
ผู้พัฒนา adtargetinghello
อีเมล [email protected]
ประเภทการชำระเงิน free
เว็บไซต์ส่วนขยาย https://teleplus.io/
URL หน้าช่วยเหลือ https://teleplus.io/
URL หน้านโยบายความเป็นส่วนตัว https://teleplus.io/teleplus-sender-private-policy
ภาษาที่รองรับ id,ms,de,en,en-GB,en-US,fil,fr,sw,nl,no,vi,tr,ca,da,et,es,es-419,hr,it,lv,lt,hu,pl,pt-BR,pt-PT,ro,sk,sl,fi,sv,cs,el,sr,bg,ru,uk,iw,fa,mr,hi,bn,gu,ta,te,kn-IN,ml,th,am-ET,ar,zh-CN,zh-TW,ja,ko
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "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.2"
}