AI Chat sidebar for Chrome

Bing Chat sidebar ported from Edge to Chrome

O que é AI Chat sidebar for Chrome?

AI Chat sidebar for Chrome é uma extensão do Chrome desenvolvida por http://bing-sidebar.com, e sua principal característica é "Bing Chat sidebar ported from Edge to Chrome".

Capturas de Tela da Extensão

screenshot

Baixar o arquivo CRX da Extensão AI Chat sidebar for Chrome

Baixe arquivos de extensão AI Chat sidebar for Chrome no formato crx, instale manualmente as extensões do Chrome no navegador ou compartilhe os arquivos crx com amigos para instalar facilmente as extensões do Chrome.

Instruções de Uso da Extensão

                        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                    

Informações Básicas da Extensão

Nome 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
Descrição Bing Chat sidebar ported from Edge to Chrome
Tamanho do Arquivo 379 KB
Contagem de Instalações 1,604
Versão Atual 1.5.0
Última Atualização 2023-07-10
Data de Publicação 2023-06-24
Classificação 4.38/5 Total de 8 Avaliações
Desenvolvedor http://bing-sidebar.com
Email [email protected]
Tipo de Pagamento free
Site da Extensão https://bing-sidebar.com
URL da Página de Ajuda https://github.com/wong2/bing-sidebar-for-chrome/issues
URL da Página de Política de Privacidade https://chathub.gg/privacy-policy
Idiomas Suportados 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"
            }
        }
    }
}