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).".
لقطات شاشة التمديد
تحميل ملف CRX للإضافة Bing AI Plus
قم بتنزيل ملفات الامتداد Bing AI Plus بتنسيق crx ، وقم بتثبيت الامتدادات يدويًا في متصفح Chrome ، أو شارك ملفات 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 |
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 |
عنوان صفحة المساعدة | 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 } } |