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 مع الأصدقاء لتثبيت الامتدادات بسهولة.
تعليمات استخدام التمديد
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).
معلومات أساسية عن التمديد
الاسم | ChatGPT Deeplink |
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 |
عنوان صفحة المساعدة | 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" } } |