AI Chat sidebar for Chrome

Bing Chat sidebar ported from Edge to Chrome

¿Qué es AI Chat sidebar for Chrome?

AI Chat sidebar for Chrome es una extensión de Chrome desarrollada por http://bing-sidebar.com, y su función principal es "Bing Chat sidebar ported from Edge to Chrome".

Capturas de Pantalla de la Extensión

screenshot

Descargar Archivo CRX de la Extensión AI Chat sidebar for Chrome

Descarga archivos de extensión AI Chat sidebar for Chrome en formato crx, instala manualmente las extensiones de Chrome en el navegador o comparte los archivos crx con amigos para instalar fácilmente las extensiones de Chrome.

Instrucciones de Uso de la Extensión

                        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                    

Información Básica de la Extensión

Nombre AI Chat sidebar for Chrome AI Chat sidebar for Chrome
ID ncjedehfkpnliaafimjhdjjeggmfmlgf
URL Oficial https://chrome.google.com/webstore/detail/ai-chat-sidebar-for-chrom/ncjedehfkpnliaafimjhdjjeggmfmlgf
Descripción Bing Chat sidebar ported from Edge to Chrome
Tamaño del Archivo 379 KB
Cantidad de Instalaciones 1,604
Versión Actual 1.5.0
Última Actualización 2023-07-10
Fecha de Publicación 2023-06-24
Calificación 4.38/5 Total de 8 Calificaciones
Desarrollador http://bing-sidebar.com
Correo electrónico [email protected]
Tipo de Pago free
Sitio Web de la Extensión https://bing-sidebar.com
URL de la Página de Ayuda https://github.com/wong2/bing-sidebar-for-chrome/issues
URL de la Página de Política de Privacidad https://chathub.gg/privacy-policy
Idiomas Soportados 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"
            }
        }
    }
}