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
电子邮箱 [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"
            }
        }
    }
}