ChatGPT Shortcut
Adds the ability to query ChatGPT outside of the website automatically via links with the GET parameter named 'q'.
ChatGPT Shortcutคืออะไร?
ChatGPT Shortcut เป็นส่วนขยายของ Chrome ที่พัฒนาโดย Patrik Martinko และคุณลักษณะหลักของมันคือ "Adds the ability to query ChatGPT outside of the website automatically via links with the GET parameter named 'q'."
ภาพหน้าจอของส่วนขยาย
ดาวน์โหลดไฟล์ CRX ของส่วนขยาย ChatGPT Shortcut
ดาวน์โหลดไฟล์ส่วนขยาย ChatGPT Shortcut ในรูปแบบ crx และติดตั้งส่วนขยาย Chrome ด้วยตนเองในเบราว์เซอร์หรือแชร์ไฟล์ crx กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย Chrome อย่างง่ายดาย
คำแนะนำในการใช้ส่วนขยาย
This is especially useful when you use launcher apps like Spotlight, Alfred, LaunchBar, Flow Launcher, Wox ... Structure of query: https://chat.openai.com/chat?q={query}
ข้อมูลพื้นฐานของส่วนขยาย
ชื่อ | ChatGPT Shortcut |
ID | mdbedmdmpgnfipljamcabejcnoilbfaf |
URL อย่างเป็นทางการ | https://chromewebstore.google.com/detail/chatgpt-shortcut/mdbedmdmpgnfipljamcabejcnoilbfaf |
คำอธิบาย | Adds the ability to query ChatGPT outside of the website automatically via links with the GET parameter named 'q'. |
ขนาดไฟล์ | 28.12 KB |
จำนวนการติดตั้ง | 1,680 |
เวอร์ชันปัจจุบัน | 1.0.4 |
อัปเดตครั้งล่าสุด | 2023-08-07 |
วันที่เผยแพร่ | 2023-01-27 |
คะแนน | 3.67/5 รวมทั้งหมด 3 คะแนน |
ผู้พัฒนา | Patrik Martinko |
อีเมล | [email protected] |
ประเภทการชำระเงิน | free |
เว็บไซต์ส่วนขยาย | https://github.com/patrik-martinko/app-chatgpt-shortcut |
URL หน้าช่วยเหลือ | https://github.com/patrik-martinko/app-chatgpt-shortcut/issues |
ภาษาที่รองรับ | en-US |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 3, "name": "ChatGPT Shortcut", "description": "Adds the ability to query ChatGPT outside of the website automatically via links with the GET parameter named 'q'.", "version": "1.0.4", "content_scripts": [ { "matches": [ "https:\/\/chat.openai.com\/*" ], "js": [ "script.js" ] } ], "icons": { "16": "icon-16.png", "48": "icon-48.png", "128": "icon-128.png" } } |