Bing AI Plus

Adds many features and gives options to the new Bing AI chatbot (ChatGPT v4).

Bing AI Plus क्या है?

Bing AI Plus Patrik Martinko द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Adds many features and gives options to the new Bing AI chatbot (ChatGPT v4)."।

एक्सटेंशन स्क्रीनशॉट्स

screenshot

एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें

crx प्रारूप में Bing AI Plus एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ crx फ़ाइलों को साझा करें ताकि क्रोम एक्सटेंशन को आसानी से स्थापित किया जा सके।

एक्सटेंशन उपयोग निर्देश

                        Features:

- Ability to automatically fill in and send the query from the URL parameter named 'q'
- Ability to hide (and show) the recent activity sidebar
- Ability to center the chat
- Ability to hide the rewards icon
- Ability to hide the welcome banner
- Ability to hide the examples
- Ability to hide the feedback text and links
- Ability to hide the terms & privacy links
- Ability to hide the color gradient on background                    

एक्सटेंशन की मूल जानकारी

नाम Bing AI Plus Bing AI Plus
ID fidegdolhcippkeobljodnicbeecghlm
आधिकारिक URL https://chrome.google.com/webstore/detail/bing-ai-plus/fidegdolhcippkeobljodnicbeecghlm
विवरण Adds many features and gives options to the new Bing AI chatbot (ChatGPT v4).
फ़ाइल का आकार 25.73 KB
स्थापना संख्या 39
वर्तमान संस्करण 1.1.1
अंतिम अपडेट 2023-06-30
प्रकाशन तिथि 2023-06-18
रेटिंग 5.00/5 कुल 1 रेटिंग्स
डेवलपर Patrik Martinko
ईमेल [email protected]
भुगतान के प्रकार free
एक्सटेंशन वेबसाइट https://github.com/patrik-martinko/app-bing-ai-plus
सहायता पृष्ठ URL https://github.com/patrik-martinko/app-bing-ai-plus/issues
समर्थित भाषाएँ en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 3,
    "name": "Bing AI Plus",
    "description": "Adds many features and gives options to the new Bing AI chatbot (ChatGPT v4).",
    "version": "1.1.1",
    "permissions": [
        "storage"
    ],
    "background": {
        "service_worker": "background.js"
    },
    "content_scripts": [
        {
            "matches": [
                "https:\/\/*.bing.com\/*"
            ],
            "js": [
                "script.js"
            ]
        }
    ],
    "icons": {
        "16": "icon-16.png",
        "48": "icon-48.png",
        "128": "icon-128.png"
    },
    "options_ui": {
        "page": "options.html",
        "open_in_tab": true
    }
}