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 파일 다운로드

크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.

확장 프로그램 사용 설명서

                        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"
            }
        }
    }
}