Bing AI Plus

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

Bing AI Plusคืออะไร?

Bing AI Plus เป็นส่วนขยายของ Chrome ที่พัฒนาโดย Patrik Martinko และคุณลักษณะหลักของมันคือ "Adds many features and gives options to the new Bing AI chatbot (ChatGPT v4)."

ภาพหน้าจอของส่วนขยาย

screenshot

ดาวน์โหลดไฟล์ CRX ของส่วนขยาย Bing AI Plus

ดาวน์โหลดไฟล์ส่วนขยาย 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
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
    }
}