Bing Unchained - Use new Bing in Chrome

Use new Bing in Chrome

Co to jest Bing Unchained - Use new Bing in Chrome?

Bing Unchained - Use new Bing in Chrome to rozszerzenie Chrome opracowane przez sU4NHu4NpUj, a jego główną funkcją jest „Use new Bing in Chrome”.

Zrzuty ekranu rozszerzenia

screenshot

Pobierz plik CRX rozszerzenia Bing Unchained - Use new Bing in Chrome

Pobierz pliki rozszerzeń Bing Unchained - Use new Bing in Chrome w formacie crx, zainstaluj ręcznie rozszerzenia Chrome w przeglądarce lub udostępnij pliki crx znajomym, aby łatwo zainstalować rozszerzenia Chrome.

Instrukcja Użytkowania Rozszerzenia

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

Podstawowe informacje o rozszerzeniu

Nazwa Bing Unchained - Use new Bing in Chrome Bing Unchained - Use new Bing in Chrome
ID laldfnbbeocphnilnofhedhcjcnchbld
Oficjalny URL https://chrome.google.com/webstore/detail/bing-unchained-use-new-bi/laldfnbbeocphnilnofhedhcjcnchbld
Opis Use new Bing in Chrome
Rozmiar pliku 58.94 KB
Liczba instalacji 52,180
Aktualna Wersja 1.4.0
Ostatnia Aktualizacja 2023-05-06
Data Publikacji 2023-02-15
Ocena 3.98/5 Łącznie 97 Oceny
Deweloper sU4NHu4NpUj
E-mail [email protected]
Typ Płatności free
Strona Rozszerzenia https://twitter.com/wong2_x
Adres URL Strony Pomocy https://twitter.com/wong2_x
Obsługiwane Języki 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"
            ]
        }
    ]
}