ChatGPT Query Detector

A simple extension which detects query strings in the ChatGPT URL and automatically enters them into the search box

ChatGPT Query Detectorคืออะไร?

ChatGPT Query Detector เป็นส่วนขยายของ Chrome ที่พัฒนาโดย codekansas และคุณลักษณะหลักของมันคือ "A simple extension which detects query strings in the ChatGPT URL and automatically enters them into the search box"

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

screenshot

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

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

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

                        This is a simple Chrome extension which loads a bit of Javascript to the ChatGPT website to detect if the "q" parameter was set, and if so, enters it into the chat bar.                    

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

ชื่อ ChatGPT Query Detector ChatGPT Query Detector
ID fpmkloadngjobjlckhokcaklldkjbojh
URL อย่างเป็นทางการ https://chromewebstore.google.com/detail/chatgpt-query-detector/fpmkloadngjobjlckhokcaklldkjbojh
คำอธิบาย A simple extension which detects query strings in the ChatGPT URL and automatically enters them into the search box
ขนาดไฟล์ 33.96 KB
จำนวนการติดตั้ง 38
เวอร์ชันปัจจุบัน 1.2
อัปเดตครั้งล่าสุด 2023-05-03
วันที่เผยแพร่ 2023-02-15
คะแนน 1.00/5 รวมทั้งหมด 1 คะแนน
ผู้พัฒนา codekansas
อีเมล [email protected]
ประเภทการชำระเงิน free
เว็บไซต์ส่วนขยาย https://github.com/codekansas/chatgpt-chrome-extension
ภาษาที่รองรับ en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 3,
    "name": "ChatGPT Query Detector",
    "description": "A simple extension which detects query strings in the ChatGPT URL and automatically enters them into the search box",
    "version": "1.2",
    "icons": {
        "128": "128.png"
    },
    "permissions": [],
    "content_scripts": [
        {
            "run_at": "document_end",
            "matches": [
                "https:\/\/chat.openai.com\/*"
            ],
            "js": [
                "content.js"
            ]
        }
    ],
    "action": {
        "default_popup": "popup.html"
    }
}