ChatGPT Extension

This extension loads ChatGPT in the current tab, allowing you to use ChatGPT along your working session.

ChatGPT Extensionคืออะไร?

ChatGPT Extension เป็นส่วนขยายของ Chrome ที่พัฒนาโดย Oliver N. และคุณลักษณะหลักของมันคือ "This extension loads ChatGPT in the current tab, allowing you to use ChatGPT along your working session."

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

screenshot

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

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

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

                        This extension loads ChatGPT in the current tab, allowing you to use ChatGPT along your working session. Simply click the extension icon in your browser toolbar to activate ChatGPT. ChatGPT is a powerful language model that uses deep learning to produce human-like responses to text input.                    

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

ชื่อ ChatGPT Extension ChatGPT Extension
ID ehigecokdaejpecogfefhmoemlapfjko
URL อย่างเป็นทางการ https://chromewebstore.google.com/detail/chatgpt-extension/ehigecokdaejpecogfefhmoemlapfjko
คำอธิบาย This extension loads ChatGPT in the current tab, allowing you to use ChatGPT along your working session.
ขนาดไฟล์ 281 KB
จำนวนการติดตั้ง 716
เวอร์ชันปัจจุบัน 0.1.0
อัปเดตครั้งล่าสุด 2022-12-21
วันที่เผยแพร่ 2022-12-21
คะแนน 1.00/5 รวมทั้งหมด 2 คะแนน
ผู้พัฒนา Oliver N.
อีเมล [email protected]
ประเภทการชำระเงิน free
เว็บไซต์ส่วนขยาย https://github.com/iOliverNguyen/chatgpt-box-extension
ภาษาที่รองรับ en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "action": [],
    "background": {
        "service_worker": "background.js"
    },
    "content_scripts": [
        {
            "css": [
                "content_script.css"
            ],
            "js": [
                "content_script.js"
            ],
            "matches": [
                "http:\/\/*\/*",
                "https:\/\/*\/*"
            ],
            "run_at": "document_start"
        }
    ],
    "description": "This extension loads ChatGPT in the current tab, allowing you to use ChatGPT along your working session.",
    "host_permissions": [
        "https:\/\/*\/*"
    ],
    "icons": {
        "16": "icon16.png",
        "48": "icon48.png",
        "96": "icon96.png",
        "128": "icon128.png",
        "512": "icon512.png"
    },
    "manifest_version": 3,
    "name": "ChatGPT Extension",
    "version": "0.1.0",
    "web_accessible_resources": [
        {
            "extension_ids": [],
            "matches": [
                "http:\/\/*\/*",
                "https:\/\/*\/*"
            ],
            "resources": [
                "assets\/*"
            ]
        }
    ]
}