AI Chat sidebar for Chrome

Bing Chat sidebar ported from Edge to Chrome

Apa itu AI Chat sidebar for Chrome?

AI Chat sidebar for Chrome adalah ekstensi Chrome yang dikembangkan oleh http://bing-sidebar.com, dan fitur utamanya adalah "Bing Chat sidebar ported from Edge to Chrome".

Screenshot Ekstensi

screenshot

Unduh Berkas CRX Ekstensi AI Chat sidebar for Chrome

Unduh file ekstensi AI Chat sidebar for Chrome dalam format crx, pasang ekstensi Chrome secara manual di peramban, atau bagikan file crx dengan teman untuk menginstal ekstensi Chrome dengan mudah.

Petunjuk Penggunaan Ekstensi

                        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                    

Informasi Dasar Ekstensi

Nama AI Chat sidebar for Chrome AI Chat sidebar for Chrome
ID ncjedehfkpnliaafimjhdjjeggmfmlgf
URL Resmi https://chrome.google.com/webstore/detail/ai-chat-sidebar-for-chrom/ncjedehfkpnliaafimjhdjjeggmfmlgf
Deskripsi Bing Chat sidebar ported from Edge to Chrome
Ukuran File 379 KB
Jumlah Instalasi 1,604
Versi Saat Ini 1.5.0
Terakhir Diperbarui 2023-07-10
Tanggal Publikasi 2023-06-24
Penilaian 4.38/5 Total 8 Penilaian
Pengembang http://bing-sidebar.com
Email [email protected]
Tipe Pembayaran free
Situs Ekstensi https://bing-sidebar.com
URL Halaman Bantuan https://github.com/wong2/bing-sidebar-for-chrome/issues
URL Halaman Kebijakan Privasi https://chathub.gg/privacy-policy
Bahasa yang Didukung 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"
            }
        }
    }
}