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文件

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

擴展使用說明

                        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
官方網址 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
    }
}