Bing AI Plus

Adds many features and gives options to the new Bing AI chatbot (ChatGPT v4).

Bing AI Plus란 무엇입니까?

Bing AI Plus은(는) Patrik Martinko에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Adds many features and gives options to the new Bing AI chatbot (ChatGPT v4)."입니다.

확장 프로그램 스크린샷

screenshot

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

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

확장 프로그램 사용 설명서

                        Features:

- Ability to automatically fill in and send the query from the URL parameter named 'q'
- Ability to hide (and show) the recent activity sidebar
- Ability to center the chat
- Ability to hide the rewards icon
- Ability to hide the welcome banner
- Ability to hide the examples
- Ability to hide the feedback text and links
- Ability to hide the terms & privacy links
- Ability to hide the color gradient on background                    

확장 프로그램 기본 정보

이름 Bing AI Plus Bing AI Plus
ID fidegdolhcippkeobljodnicbeecghlm
공식 URL https://chrome.google.com/webstore/detail/bing-ai-plus/fidegdolhcippkeobljodnicbeecghlm
설명 Adds many features and gives options to the new Bing AI chatbot (ChatGPT v4).
파일 크기 25.73 KB
설치 횟수 39
현재 버전 1.1.1
최근 업데이트 2023-06-30
출시 날짜 2023-06-18
평점 5.00/5 총 1 개의 평점
개발자 Patrik Martinko
이메일 [email protected]
결제 유형 free
확장 프로그램 웹 사이트 https://github.com/patrik-martinko/app-bing-ai-plus
도움말 페이지 URL https://github.com/patrik-martinko/app-bing-ai-plus/issues
지원되는 언어 en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 3,
    "name": "Bing AI Plus",
    "description": "Adds many features and gives options to the new Bing AI chatbot (ChatGPT v4).",
    "version": "1.1.1",
    "permissions": [
        "storage"
    ],
    "background": {
        "service_worker": "background.js"
    },
    "content_scripts": [
        {
            "matches": [
                "https:\/\/*.bing.com\/*"
            ],
            "js": [
                "script.js"
            ]
        }
    ],
    "icons": {
        "16": "icon-16.png",
        "48": "icon-48.png",
        "128": "icon-128.png"
    },
    "options_ui": {
        "page": "options.html",
        "open_in_tab": true
    }
}