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 مع الأصدقاء لتثبيت الامتدادات بسهولة.

تعليمات استخدام التمديد

                        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
عنوان صفحة المساعدة https://github.com/wong2/bing-sidebar-for-chrome/issues
عنوان صفحة سياسة الخصوصية 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"
            }
        }
    }
}