Bing AI for Chrome

Allows using Bing AI chatbot with Google Chrome and other Chromium browsers.

Bing AI for Chrome란 무엇입니까?

Bing AI for Chrome은(는) Patrik Martinko에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Allows using Bing AI chatbot with Google Chrome and other Chromium browsers."입니다.

확장 프로그램 스크린샷

screenshot
screenshot

Bing AI for Chrome 확장 프로그램 CRX 파일 다운로드

크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.

확장 프로그램 사용 설명서

                        Microsoft forces to use Microsoft Edge for Bing with Copilot AI (Chat GPT v4) and limits the other browsers. This extension removes the limits of Bing with Colipot AI chatbot with Google Chrome and other Chromium browsers by setting appropriate HTTP headers for the bing.com domain.

Please try to disable all other browser extensions because many extensions (VPNs, ad blockers, cookies, ...) break the Bing AI functionality.

-- Brave Browser

The latest version of Brave has a bug that breaks the functionality so please download and install the separate package manually (Chrome Webstore doesn't support extensions with manifest v2).

https://github.com/patrik-martinko/app-bing-ai-for-chrome#brave-browser                    

확장 프로그램 기본 정보

이름 Bing AI for Chrome Bing AI for Chrome
ID oofdkcckpabclngcdjnkhlldcfadlfmh
공식 URL https://chromewebstore.google.com/detail/bing-ai-for-chrome/oofdkcckpabclngcdjnkhlldcfadlfmh
설명 Allows using Bing AI chatbot with Google Chrome and other Chromium browsers.
파일 크기 24.79 KB
설치 횟수 44,693
현재 버전 1.1.0
최근 업데이트 2024-01-23
출시 날짜 2023-04-26
평점 3.48/5 총 42 개의 평점
개발자 Patrik Martinko
이메일 [email protected]
결제 유형 free
확장 프로그램 웹 사이트 https://github.com/patrik-martinko/app-bing-ai-for-chrome
도움말 페이지 URL https://github.com/patrik-martinko/app-bing-ai-for-chrome/issues
지원되는 언어 en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 3,
    "name": "Bing AI for Chrome",
    "description": "Allows using Bing AI chatbot with Google Chrome and other Chromium browsers.",
    "version": "1.1.0",
    "permissions": [
        "declarativeNetRequest"
    ],
    "background": {
        "service_worker": "background.js"
    },
    "content_scripts": [
        {
            "matches": [
                "https:\/\/*.bing.com\/*"
            ],
            "js": [
                "script.js"
            ]
        }
    ],
    "host_permissions": [
        "https:\/\/*.bing.com\/*"
    ],
    "icons": {
        "16": "icon-16.png",
        "48": "icon-48.png",
        "128": "icon-128.png"
    },
    "action": {
        "default_icon": "icon-48.png"
    }
}