ChatGPT vs Bard

Put ChatGPT vs Bard side by side for comparison.

Was ist ChatGPT vs Bard?

ChatGPT vs Bard ist eine Chrome-Erweiterung, die von hilcj0001 entwickelt wurde, und ihr Hauptmerkmal ist "Put ChatGPT vs Bard side by side for comparison.".

Erweiterungsscreenshots

screenshot

ChatGPT vs Bard-Erweiterungs-CRX-Datei herunterladen

Laden Sie ChatGPT vs Bard-Erweiterungsdateien im crx-Format herunter, installieren Sie Chrome-Erweiterungen manuell im Browser oder teilen Sie die crx-Dateien mit Freunden, um Chrome-Erweiterungen einfach zu installieren.

Anleitung zur Verwendung der Erweiterung

                        Compares Google Bard vs ChatGPT in the same window.

Write your question in one and get answer from both.

Source code in https://github.com/hilcj0001/bard-vs-chatgpt                    

Grundlegende Informationen zur Erweiterung

Name ChatGPT vs Bard ChatGPT vs Bard
ID dbndihjefcldfjlleakpkkaidakbakmi
Offizielle URL https://chromewebstore.google.com/detail/chatgpt-vs-bard/dbndihjefcldfjlleakpkkaidakbakmi
Beschreibung Put ChatGPT vs Bard side by side for comparison.
Dateigröße 197 KB
Installationsanzahl 392
Aktuelle Version 1.0
Letztes Update 2023-03-29
Veröffentlichungsdatum 2023-03-29
Bewertung 4.50/5 Insgesamt 2 Bewertungen
Entwickler hilcj0001
E-Mail [email protected]
Zahlungsart free
Erweiterungswebsite https://github.com/hilcj0001/bard-vs-chatgpt
Unterstützte Sprachen en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "ChatGPT vs Bard",
    "description": "Put ChatGPT vs Bard side by side for comparison.",
    "version": "1.0",
    "manifest_version": 3,
    "action": {
        "default_icon": "ui\/icon.png"
    },
    "background": {
        "service_worker": "scripts\/background.js"
    },
    "options_page": "ui\/options.html",
    "minimum_chrome_version": "96",
    "host_permissions": [
        "*:\/\/*.google.com\/",
        "*:\/\/*.openai.com\/",
        "*:\/\/*.bing.com\/"
    ],
    "web_accessible_resources": [
        {
            "resources": [
                "ui\/side-by-side.html",
                "ui\/icon.png"
            ],
            "matches": [
                ""
            ]
        }
    ],
    "content_scripts": [
        {
            "js": [
                "scripts\/sync-inputs-utils.js",
                "scripts\/sync-inputs-google.js"
            ],
            "matches": [
                "*:\/\/www.google.com\/",
                "*:\/\/www.google.com\/search*"
            ],
            "run_at": "document_end",
            "all_frames": true
        },
        {
            "js": [
                "scripts\/sync-inputs-utils.js",
                "scripts\/sync-inputs-bard.js"
            ],
            "matches": [
                "*:\/\/bard.google.com\/"
            ],
            "run_at": "document_end",
            "all_frames": true
        },
        {
            "js": [
                "scripts\/sync-inputs-utils.js",
                "scripts\/sync-inputs-openai.js"
            ],
            "matches": [
                "*:\/\/*.openai.com\/*"
            ],
            "run_at": "document_end",
            "all_frames": true
        },
        {
            "js": [
                "scripts\/sync-inputs-utils.js",
                "scripts\/sync-inputs-bing.js"
            ],
            "matches": [
                "*:\/\/*.bing.com\/*"
            ],
            "run_at": "document_end",
            "all_frames": true
        }
    ],
    "permissions": [
        "declarativeNetRequest",
        "storage",
        "system.display"
    ],
    "declarative_net_request": {
        "rule_resources": [
            {
                "id": "allow-frame-embed",
                "enabled": true,
                "path": "rules\/allow-frame-embed.json"
            }
        ]
    }
}