AI Chat sidebar for Chrome

Bing Chat sidebar ported from Edge to Chrome

AI Chat sidebar for Chromeとは何ですか?

AI Chat sidebar for Chromeはhttp://bing-sidebar.comによって開発されたChromeの拡張機能で、その主な機能は「Bing Chat sidebar ported from Edge to Chrome」です。

拡張機能のスクリーンショット

screenshot

AI Chat sidebar for Chrome拡張機能のCRXファイルをダウンロード

AI Chat sidebar for Chrome拡張子のファイルをcrx形式でダウンロードし、ブラウザにChrome拡張機能を手動でインストールするか、crxファイルを友達と共有して簡単にChrome拡張機能をインストールします。

拡張機能の使用方法

                        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                    

拡張機能の基本情報

名前 AI Chat sidebar for Chrome AI Chat sidebar for Chrome
ID ncjedehfkpnliaafimjhdjjeggmfmlgf
公式URL https://chrome.google.com/webstore/detail/ai-chat-sidebar-for-chrom/ncjedehfkpnliaafimjhdjjeggmfmlgf
説明 Bing Chat sidebar ported from Edge to Chrome
ファイルサイズ 379 KB
インストール数 1,604
現在のバージョン 1.5.0
最終更新日 2023-07-10
公開日 2023-06-24
評価 4.38/5 合計 8 レビュー
開発者 http://bing-sidebar.com
Eメール [email protected]
支払い方法 free
拡張機能のウェブサイト https://bing-sidebar.com
ヘルプページのURL https://github.com/wong2/bing-sidebar-for-chrome/issues
プライバシーポリシーページのURL https://chathub.gg/privacy-policy
対応言語 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"
            }
        }
    }
}