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 codekansas द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "A simple extension which detects query strings in the ChatGPT URL and automatically enters them into the search box"।
एक्सटेंशन स्क्रीनशॉट्स
एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें
crx प्रारूप में ChatGPT Query Detector एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ crx फ़ाइलों को साझा करें ताकि क्रोम एक्सटेंशन को आसानी से स्थापित किया जा सके।
एक्सटेंशन उपयोग निर्देश
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 |
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" } } |