Bing Unchained - Use new Bing in Chrome

Use new Bing in Chrome

什麼是Bing Unchained - Use new Bing in Chrome?

Bing Unchained - Use new Bing in Chrome是由sU4NHu4NpUj開發的Chrome擴展程式,該擴展的主要功能是“Use new Bing in Chrome”。

擴展截圖

screenshot

下載Bing Unchained - Use new Bing in Chrome擴展crx文件

下載Bing Unchained - Use new Bing in Chrome擴展crx格式的文件,手動將Chrome擴充功能安裝到瀏覽器中,也可以將crx文件分享給朋友,輕鬆安裝Chrome擴充功能。

擴展使用說明

                        Use new bing in Chrome, instead of being forced to switch browser to Edge.                    

擴展基本資訊

名稱 Bing Unchained - Use new Bing in Chrome Bing Unchained - Use new Bing in Chrome
ID laldfnbbeocphnilnofhedhcjcnchbld
官方網址 https://chrome.google.com/webstore/detail/bing-unchained-use-new-bi/laldfnbbeocphnilnofhedhcjcnchbld
簡介 Use new Bing in Chrome
檔案大小 58.94 KB
安裝次數 52,180
目前版本 1.4.0
更新時間 2023-05-06
上架時間 2023-02-15
評分 3.98/5 共 97 次評分
開發者 sU4NHu4NpUj
電子郵箱 [email protected]
付費類型 free
擴展官網 https://twitter.com/wong2_x
說明頁面URL https://twitter.com/wong2_x
支援的語言 en,zh-CN
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "__MSG_appName__",
    "description": "__MSG_appDesc__",
    "default_locale": "en",
    "version": "1.4.0",
    "manifest_version": 3,
    "icons": {
        "16": "logo.png",
        "32": "logo.png",
        "48": "logo.png",
        "128": "logo.png"
    },
    "host_permissions": [
        "https:\/\/*.bing.com\/*"
    ],
    "permissions": [
        "declarativeNetRequest",
        "commands"
    ],
    "background": {
        "service_worker": "background.js"
    },
    "action": [],
    "declarative_net_request": {
        "rule_resources": [
            {
                "id": "modify_ua_header",
                "enabled": true,
                "path": "rules.json"
            }
        ]
    },
    "commands": {
        "open-bing": {
            "description": "Open Bing Chat"
        }
    },
    "content_scripts": [
        {
            "matches": [
                "https:\/\/*.bing.com\/search*"
            ],
            "js": [
                "content-script.js"
            ]
        }
    ]
}