AI Chat sidebar for Chrome

Bing Chat sidebar ported from Edge to Chrome

Co je AI Chat sidebar for Chrome?

AI Chat sidebar for Chrome je rozšíření Chrome vyvinuté http://bing-sidebar.com, a jeho hlavní funkcí je „Bing Chat sidebar ported from Edge to Chrome“.

Snímky obrazovky rozšíření

screenshot

Stáhnout soubor CRX rozšíření AI Chat sidebar for Chrome

Stáhněte si soubory rozšíření AI Chat sidebar for Chrome ve formátu crx, ručně nainstalujte rozšíření Chrome do prohlížeče nebo sdílejte soubory crx s přáteli, abyste jednoduše nainstalovali rozšíření Chrome.

Pokyny pro Použití Rozšíření

                        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                    

Základní Informace o Rozšíření

Název AI Chat sidebar for Chrome AI Chat sidebar for Chrome
ID ncjedehfkpnliaafimjhdjjeggmfmlgf
Oficiální URL https://chrome.google.com/webstore/detail/ai-chat-sidebar-for-chrom/ncjedehfkpnliaafimjhdjjeggmfmlgf
Popis Bing Chat sidebar ported from Edge to Chrome
Velikost souboru 379 KB
Počet instalací 1,604
Aktuální Verze 1.5.0
Poslední Aktualizace 2023-07-10
Datum Vydání 2023-06-24
Hodnocení 4.38/5 Celkem 8 Hodnocení
Vývojář http://bing-sidebar.com
E-mail [email protected]
Typ Platby free
Webové stránky Rozšíření https://bing-sidebar.com
URL Stránky Nápovědy https://github.com/wong2/bing-sidebar-for-chrome/issues
URL Stránky Zásad Ochrany Soukromí https://chathub.gg/privacy-policy
Podporované Jazyky 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"
            }
        }
    }
}