AI Chat sidebar for Chrome

Bing Chat sidebar ported from Edge to Chrome

AI Chat sidebar for Chromeคืออะไร?

AI Chat sidebar for Chrome เป็นส่วนขยายของ Chrome ที่พัฒนาโดย http://bing-sidebar.com และคุณลักษณะหลักของมันคือ "Bing Chat sidebar ported from Edge to Chrome"

ภาพหน้าจอของส่วนขยาย

screenshot

ดาวน์โหลดไฟล์ CRX ของส่วนขยาย AI Chat sidebar for Chrome

ดาวน์โหลดไฟล์ส่วนขยาย 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"
            }
        }
    }
}