ChatGPT Deeplink
Adds a url parameter to ChatGPT so that https://chat.openai.com/?query=your+query+here starts a conversation.
ChatGPT Deeplinkคืออะไร?
ChatGPT Deeplink เป็นส่วนขยายของ Chrome ที่พัฒนาโดย Paul Arterburn และคุณลักษณะหลักของมันคือ "Adds a url parameter to ChatGPT so that https://chat.openai.com/?query=your+query+here starts a conversation."
ภาพหน้าจอของส่วนขยาย
ดาวน์โหลดไฟล์ CRX ของส่วนขยาย ChatGPT Deeplink
ดาวน์โหลดไฟล์ส่วนขยาย ChatGPT Deeplink ในรูปแบบ crx และติดตั้งส่วนขยาย Chrome ด้วยตนเองในเบราว์เซอร์หรือแชร์ไฟล์ crx กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย Chrome อย่างง่ายดาย
คำแนะนำในการใช้ส่วนขยาย
                        This adds a URL parameter to ChatGPT so you can deep link to start new conversations from other applications (like Raycast). The URL scheme is: https://chat.openai.com/?query=your+query+here
It also adds a custom search engine to Chrome, so in the Omnibox you can type `ai {query}`. Triggering this command may either be a space or tab, depending on your settings (chrome://settings/searchEngines).                     ข้อมูลพื้นฐานของส่วนขยาย
| ชื่อ |   |  
| ID | bmkbpmkcppdmkdbpihmijgeilchgeapo | 
| URL อย่างเป็นทางการ | https://chromewebstore.google.com/detail/chatgpt-deeplink/bmkbpmkcppdmkdbpihmijgeilchgeapo | 
| คำอธิบาย | Adds a url parameter to ChatGPT so that https://chat.openai.com/?query=your+query+here starts a conversation. | 
| ขนาดไฟล์ | 12.55 KB | 
| จำนวนการติดตั้ง | 83 | 
| เวอร์ชันปัจจุบัน | 1.1 | 
| อัปเดตครั้งล่าสุด | 2023-08-08 | 
| วันที่เผยแพร่ | 2023-08-07 | 
| คะแนน | 5.00/5 รวมทั้งหมด 5 คะแนน | 
| ผู้พัฒนา | Paul Arterburn | 
| อีเมล | [email protected] | 
| ประเภทการชำระเงิน | free | 
| เว็บไซต์ส่วนขยาย | https://chat.openai.com | 
| URL หน้าช่วยเหลือ | https://twitter.com/parterburn | 
| ภาษาที่รองรับ | en-US | 
| manifest.json | |
 {
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 3,
    "name": "ChatGPT Deeplink",
    "description": "Adds a url parameter to ChatGPT so that https:\/\/chat.openai.com\/?query=your+query+here starts a conversation.",
    "version": "1.1",
    "homepage_url": "https:\/\/chat.openai.com",
    "omnibox": {
        "keyword": "ai"
    },
    "permissions": [
        "scripting",
        "webNavigation",
        "storage"
    ],
    "background": {
        "service_worker": "background.js"
    },
    "host_permissions": [
        "https:\/\/chat.openai.com\/*"
    ],
    "icons": {
        "16": "images\/icon16.png",
        "48": "images\/icon48.png",
        "128": "images\/icon128.png"
    },
    "action": {
        "default_popup": "settings.html"
    }
}  |  |