Bing AI for Chrome

Allows using Bing AI chatbot with Google Chrome and other Chromium browsers.

Τι είναι το Bing AI for Chrome;

Το Bing AI for Chrome είναι ένα πρόσθετο Chrome που αναπτύχθηκε από τον Patrik Martinko, και η κύρια λειτουργία του είναι "Allows using Bing AI chatbot with Google Chrome and other Chromium browsers.".

Στιγμιότυπα Επέκτασης

screenshot
screenshot

Λήψη αρχείου CRX της επέκτασης Bing AI for Chrome

Λήψη αρχείων επέκτασης Bing AI for Chrome σε μορφή crx, εγκατάσταση των επεκτάσεων Chrome μη αυτόματα στον περιηγητή ή κοινοποίηση των αρχείων crx με φίλους για εύκολη εγκατάσταση των επεκτάσεων Chrome.

Οδηγίες Χρήσης της Επέκτασης

                        Microsoft forces to use Microsoft Edge for Bing with Copilot AI (Chat GPT v4) and limits the other browsers. This extension removes the limits of Bing with Colipot AI chatbot with Google Chrome and other Chromium browsers by setting appropriate HTTP headers for the bing.com domain.

Please try to disable all other browser extensions because many extensions (VPNs, ad blockers, cookies, ...) break the Bing AI functionality.

-- Brave Browser

The latest version of Brave has a bug that breaks the functionality so please download and install the separate package manually (Chrome Webstore doesn't support extensions with manifest v2).

https://github.com/patrik-martinko/app-bing-ai-for-chrome#brave-browser                    

Βασικές Πληροφορίες Επέκτασης

Όνομα Bing AI for Chrome Bing AI for Chrome
ID oofdkcckpabclngcdjnkhlldcfadlfmh
Επίσημο URL https://chromewebstore.google.com/detail/bing-ai-for-chrome/oofdkcckpabclngcdjnkhlldcfadlfmh
Περιγραφή Allows using Bing AI chatbot with Google Chrome and other Chromium browsers.
Μέγεθος Αρχείου 24.79 KB
Αριθμός Εγκαταστάσεων 44,693
Τρέχουσα Έκδοση 1.1.0
Τελευταία Ενημέρωση 2024-01-23
Ημερομηνία Δημοσίευσης 2023-04-26
Αξιολόγηση 3.48/5 Συνολικά 42 Αξιολογήσεις
Προγραμματιστής Patrik Martinko
Ηλεκτρονικό ταχυδρομείο [email protected]
Τύπος Πληρωμής free
Ιστότοπος Επέκτασης https://github.com/patrik-martinko/app-bing-ai-for-chrome
Διεύθυνση URL της Σελίδας Βοήθειας https://github.com/patrik-martinko/app-bing-ai-for-chrome/issues
Υποστηριζόμενες Γλώσσες en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 3,
    "name": "Bing AI for Chrome",
    "description": "Allows using Bing AI chatbot with Google Chrome and other Chromium browsers.",
    "version": "1.1.0",
    "permissions": [
        "declarativeNetRequest"
    ],
    "background": {
        "service_worker": "background.js"
    },
    "content_scripts": [
        {
            "matches": [
                "https:\/\/*.bing.com\/*"
            ],
            "js": [
                "script.js"
            ]
        }
    ],
    "host_permissions": [
        "https:\/\/*.bing.com\/*"
    ],
    "icons": {
        "16": "icon-16.png",
        "48": "icon-48.png",
        "128": "icon-128.png"
    },
    "action": {
        "default_icon": "icon-48.png"
    }
}