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 με φίλους για εύκολη εγκατάσταση των επεκτάσεων 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 |
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 } } |