AI Chat sidebar for Chrome

Bing Chat sidebar ported from Edge to Chrome

Wat is AI Chat sidebar for Chrome?

AI Chat sidebar for Chrome is een Chrome-extensie ontwikkeld door http://bing-sidebar.com, en de belangrijkste functie is "Bing Chat sidebar ported from Edge to Chrome".

Extensie Screenshots

screenshot

Download het CRX-bestand van de extensie AI Chat sidebar for Chrome

Download AI Chat sidebar for Chrome-extensiebestanden in crx-indeling, installeer Chrome-extensies handmatig in de browser of deel de crx-bestanden met vrienden om Chrome-extensies eenvoudig te installeren.

Instructies voor het Gebruik van de Extensie

                        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                    

Basisinformatie over de Extensie

Naam AI Chat sidebar for Chrome AI Chat sidebar for Chrome
ID ncjedehfkpnliaafimjhdjjeggmfmlgf
Officiële URL https://chrome.google.com/webstore/detail/ai-chat-sidebar-for-chrom/ncjedehfkpnliaafimjhdjjeggmfmlgf
Beschrijving Bing Chat sidebar ported from Edge to Chrome
Bestandsgrootte 379 KB
Aantal Installaties 1,604
Huidige Versie 1.5.0
Laatst Bijgewerkt 2023-07-10
Publicatiedatum 2023-06-24
Beoordeling 4.38/5 Totaal 8 Beoordelingen
Ontwikkelaar http://bing-sidebar.com
E-mail [email protected]
Betalingswijze free
Extensiewebsite https://bing-sidebar.com
Help Pagina-URL https://github.com/wong2/bing-sidebar-for-chrome/issues
URL van de Privacybeleid Pagina https://chathub.gg/privacy-policy
Ondersteunde Talen 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"
            }
        }
    }
}