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 Paul Arterburn द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Adds a url parameter to ChatGPT so that https://chat.openai.com/?query=your+query+here starts a conversation."।
एक्सटेंशन स्क्रीनशॉट्स
एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें
crx प्रारूप में ChatGPT Deeplink एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ 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 |
सहायता पृष्ठ 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" } } |