AI Chat sidebar for Chrome

Bing Chat sidebar ported from Edge to Chrome

Cos'è AI Chat sidebar for Chrome?

AI Chat sidebar for Chrome è un'estensione di Chrome sviluppata da http://bing-sidebar.com, e la sua funzione principale è "Bing Chat sidebar ported from Edge to Chrome".

Screenshot dell'Estensione

screenshot

Scarica il file CRX dell'estensione AI Chat sidebar for Chrome

Scarica i file di estensione AI Chat sidebar for Chrome in formato crx, installa manualmente le estensioni di Chrome nel browser o condividi i file crx con gli amici per installare facilmente le estensioni di Chrome.

Istruzioni per l'Uso dell'Estensione

                        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                    

Informazioni di Base sull'Estensione

Nome AI Chat sidebar for Chrome AI Chat sidebar for Chrome
ID ncjedehfkpnliaafimjhdjjeggmfmlgf
URL Ufficiale https://chrome.google.com/webstore/detail/ai-chat-sidebar-for-chrom/ncjedehfkpnliaafimjhdjjeggmfmlgf
Descrizione Bing Chat sidebar ported from Edge to Chrome
Dimensione del File 379 KB
Conteggio Installazioni 1,604
Versione Corrente 1.5.0
Ultimo Aggiornamento 2023-07-10
Data di Pubblicazione 2023-06-24
Valutazione 4.38/5 Totale 8 Valutazioni
Sviluppatore http://bing-sidebar.com
Email [email protected]
Tipo di Pagamento free
Sito Web dell'Estensione https://bing-sidebar.com
URL della Pagina di Aiuto https://github.com/wong2/bing-sidebar-for-chrome/issues
URL della Pagina della Politica sulla Privacy https://chathub.gg/privacy-policy
Lingue Supportate 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"
            }
        }
    }
}