GPT Vokal
Give voice instructions to ChatGPT.
GPT Vokal क्या है?
GPT Vokal Nqedile द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Give voice instructions to ChatGPT."।
एक्सटेंशन स्क्रीनशॉट्स
एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें
crx प्रारूप में GPT Vokal एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ crx फ़ाइलों को साझा करें ताकि क्रोम एक्सटेंशन को आसानी से स्थापित किया जा सके।
एक्सटेंशन उपयोग निर्देश
This extension allows you to send voice prompts to ChatGPT instead of typing your requests. Install it, refresh the page, you should be able to see a mic icon next to the textarea of ChatGPT. If that doesn't work, open another tab and then back to the original ChatGPT tab and it should work fine.
एक्सटेंशन की मूल जानकारी
नाम | GPT Vokal |
ID | dhjabboeafgfmofgjiegaenmiikcdcpd |
आधिकारिक URL | https://chromewebstore.google.com/detail/gpt-vokal/dhjabboeafgfmofgjiegaenmiikcdcpd |
विवरण | Give voice instructions to ChatGPT. |
फ़ाइल का आकार | 43.5 KB |
स्थापना संख्या | 39 |
वर्तमान संस्करण | 1.0.3 |
अंतिम अपडेट | 2023-07-17 |
प्रकाशन तिथि | 2023-02-05 |
डेवलपर | Nqedile |
ईमेल | [email protected] |
भुगतान के प्रकार | free |
समर्थित भाषाएँ | en-US |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "GPT Vokal", "description": "Give voice instructions to ChatGPT.", "version": "1.0.3", "manifest_version": 3, "icons": { "16": ".\/images\/icon16.png", "48": ".\/images\/icon48.png", "128": ".\/images\/icon128.png" }, "background": { "service_worker": ".\/background.js" }, "options_page": ".\/options.html", "action": { "default_popup": "popup.html" }, "permissions": [ "tabs", "scripting" ], "host_permissions": [ "https:\/\/chat.openai.com\/*" ], "content_scripts": [ { "js": [ "foreground.js" ], "matches": [ "https:\/\/chat.openai.com\/*" ] } ] } |