Bing AI for Chrome
Allows using Bing AI chatbot with Google Chrome and other Chromium browsers.
Bing AI for Chrome क्या है?
Bing AI for Chrome Patrik Martinko द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Allows using Bing AI chatbot with Google Chrome and other Chromium browsers."।
एक्सटेंशन स्क्रीनशॉट्स
एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें
crx प्रारूप में Bing AI for Chrome एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ crx फ़ाइलों को साझा करें ताकि क्रोम एक्सटेंशन को आसानी से स्थापित किया जा सके।
एक्सटेंशन उपयोग निर्देश
Microsoft forces to use Microsoft Edge for Bing with Copilot AI (Chat GPT v4) and limits the other browsers. This extension removes the limits of Bing with Colipot AI chatbot with Google Chrome and other Chromium browsers by setting appropriate HTTP headers for the bing.com domain. Please try to disable all other browser extensions because many extensions (VPNs, ad blockers, cookies, ...) break the Bing AI functionality. -- Brave Browser The latest version of Brave has a bug that breaks the functionality so please download and install the separate package manually (Chrome Webstore doesn't support extensions with manifest v2). https://github.com/patrik-martinko/app-bing-ai-for-chrome#brave-browser
एक्सटेंशन की मूल जानकारी
नाम | Bing AI for Chrome |
ID | oofdkcckpabclngcdjnkhlldcfadlfmh |
आधिकारिक URL | https://chromewebstore.google.com/detail/bing-ai-for-chrome/oofdkcckpabclngcdjnkhlldcfadlfmh |
विवरण | Allows using Bing AI chatbot with Google Chrome and other Chromium browsers. |
फ़ाइल का आकार | 24.79 KB |
स्थापना संख्या | 44,693 |
वर्तमान संस्करण | 1.1.0 |
अंतिम अपडेट | 2024-01-23 |
प्रकाशन तिथि | 2023-04-26 |
रेटिंग | 3.48/5 कुल 42 रेटिंग्स |
डेवलपर | Patrik Martinko |
ईमेल | [email protected] |
भुगतान के प्रकार | free |
एक्सटेंशन वेबसाइट | https://github.com/patrik-martinko/app-bing-ai-for-chrome |
सहायता पृष्ठ URL | https://github.com/patrik-martinko/app-bing-ai-for-chrome/issues |
समर्थित भाषाएँ | en-US |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 3, "name": "Bing AI for Chrome", "description": "Allows using Bing AI chatbot with Google Chrome and other Chromium browsers.", "version": "1.1.0", "permissions": [ "declarativeNetRequest" ], "background": { "service_worker": "background.js" }, "content_scripts": [ { "matches": [ "https:\/\/*.bing.com\/*" ], "js": [ "script.js" ] } ], "host_permissions": [ "https:\/\/*.bing.com\/*" ], "icons": { "16": "icon-16.png", "48": "icon-48.png", "128": "icon-128.png" }, "action": { "default_icon": "icon-48.png" } } |