Ask ChatGPT
Allows to ask ChatGPT right from your Chrome OmniBar (a.k.a Adress Bar)!
Ask ChatGPT क्या है?
Ask ChatGPT codemonument द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Allows to ask ChatGPT right from your Chrome OmniBar (a.k.a Adress Bar)!"।
एक्सटेंशन स्क्रीनशॉट्स
एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें
crx प्रारूप में Ask ChatGPT एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ crx फ़ाइलों को साझा करें ताकि क्रोम एक्सटेंशन को आसानी से स्थापित किया जा सके।
एक्सटेंशन उपयोग निर्देश
This Extension brings the power of ChatGPT right into your Chrome OmniBar! How to use it: 1. Open a new Tab 2. Type: "gpt", followed by a space* * If you already have a shortcut called gpt, you might need to press TAB instead of space to activate the extension 3. Insert any query you like and press enter 4. You will be redirected to chat.openai.com and your query will be inserted and submitted automatically! Extra Feature: The extension tries to detect whether you're logged into ChatGPT or not. If you see the message "You seem to not be logged in! Please log in at https://chat.openai.com/auth/login" you can press enter and you'll be directly redirected to the login page!
एक्सटेंशन की मूल जानकारी
नाम | Ask ChatGPT |
ID | kfjlbdhonplbiikgogomppidenoaichc |
आधिकारिक URL | https://chromewebstore.google.com/detail/ask-chatgpt/kfjlbdhonplbiikgogomppidenoaichc |
विवरण | Allows to ask ChatGPT right from your Chrome OmniBar (a.k.a Adress Bar)! |
फ़ाइल का आकार | 112 KB |
स्थापना संख्या | 3,181 |
वर्तमान संस्करण | 1.0.1 |
अंतिम अपडेट | 2023-03-05 |
प्रकाशन तिथि | 2023-03-03 |
रेटिंग | 5.00/5 कुल 1 रेटिंग्स |
डेवलपर | codemonument |
ईमेल | [email protected] |
भुगतान के प्रकार | free |
एक्सटेंशन वेबसाइट | https://github.com/codemonument/chrome-ask-gpt |
सहायता पृष्ठ URL | https://github.com/codemonument/chrome-ask-gpt/issues |
समर्थित भाषाएँ | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "Ask ChatGPT", "description": "Allows to ask ChatGPT right from your Chrome OmniBar (a.k.a Adress Bar)!", "version": "1.0.1", "manifest_version": 3, "author": "[email protected]", "omnibox": { "keyword": "gpt" }, "background": { "service_worker": "background.js", "type": "module" }, "permissions": [ "scripting" ], "host_permissions": [ "http:\/\/chat.openai.com\/*", "https:\/\/chat.openai.com\/*" ], "content_security_policy": { "extension_pages": "script-src 'self'; object-src 'self'" }, "icons": { "16": "assets\/icon_16x16.png", "32": "assets\/icon_32x32.png", "64": "assets\/icon_64x64.png", "128": "assets\/icon_128x128.png", "256": "assets\/icon_256x256.png", "512": "assets\/icon_512x512.png" } } |