AI Chat sidebar for Chrome

Bing Chat sidebar ported from Edge to Chrome

AI Chat sidebar for Chrome क्या है?

AI Chat sidebar for Chrome http://bing-sidebar.com द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Bing Chat sidebar ported from Edge to Chrome"।

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

screenshot

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

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

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

                        Bing Chat sidebar extension let you use Bing Chat in Chrome side panel, with context of the webpage you're viewing. Works the same as Bing Chat sidebar in Edge browser.

Source code: https://github.com/wong2/bing-sidebar-for-chrome                    

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

नाम AI Chat sidebar for Chrome AI Chat sidebar for Chrome
ID ncjedehfkpnliaafimjhdjjeggmfmlgf
आधिकारिक URL https://chrome.google.com/webstore/detail/ai-chat-sidebar-for-chrom/ncjedehfkpnliaafimjhdjjeggmfmlgf
विवरण Bing Chat sidebar ported from Edge to Chrome
फ़ाइल का आकार 379 KB
स्थापना संख्या 1,604
वर्तमान संस्करण 1.5.0
अंतिम अपडेट 2023-07-10
प्रकाशन तिथि 2023-06-24
रेटिंग 4.38/5 कुल 8 रेटिंग्स
डेवलपर http://bing-sidebar.com
ईमेल [email protected]
भुगतान के प्रकार free
एक्सटेंशन वेबसाइट https://bing-sidebar.com
सहायता पृष्ठ URL https://github.com/wong2/bing-sidebar-for-chrome/issues
गोपनीयता नीति पृष्ठ URL https://chathub.gg/privacy-policy
समर्थित भाषाएँ en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 3,
    "name": "AI Chat sidebar for Chrome",
    "description": "Bing Chat sidebar ported from Edge to Chrome",
    "version": "1.5.0",
    "icons": {
        "16": "icon.png",
        "32": "icon.png",
        "48": "icon.png",
        "128": "icon.png"
    },
    "background": {
        "service_worker": "background.js"
    },
    "action": {
        "default_title": "Click to open sidebar"
    },
    "side_panel": {
        "default_path": "sidepanel\/index.html"
    },
    "host_permissions": [
        ""
    ],
    "permissions": [
        "sidePanel",
        "declarativeNetRequest",
        "tabs",
        "notifications"
    ],
    "content_scripts": [
        {
            "js": [
                "shell\/content.js"
            ],
            "matches": [
                "https:\/\/*.bing.com\/edgesvc\/shell*"
            ],
            "run_at": "document_end",
            "all_frames": true
        },
        {
            "js": [
                "shell\/inject.js"
            ],
            "matches": [
                "https:\/\/*.bing.com\/edgesvc\/shell*"
            ],
            "run_at": "document_start",
            "all_frames": true,
            "world": "MAIN"
        },
        {
            "js": [
                "libs\/pdf.min.js",
                "content-script.js"
            ],
            "matches": [
                ""
            ]
        }
    ],
    "commands": {
        "_execute_action": {
            "suggested_key": {
                "default": "Ctrl+Shift+K",
                "mac": "Command+Shift+K"
            }
        }
    }
}