ChatGPT vs Bard

Put ChatGPT vs Bard side by side for comparison.

Qu'est-ce que ChatGPT vs Bard ?

ChatGPT vs Bard est une extension Chrome développée par hilcj0001, et sa fonction principale est "Put ChatGPT vs Bard side by side for comparison.".

Captures d'Écran de l'Extension

screenshot

Télécharger le fichier CRX de l'extension ChatGPT vs Bard

Téléchargez les fichiers d'extension ChatGPT vs Bard au format crx, installez manuellement les extensions Chrome dans le navigateur ou partagez les fichiers crx avec des amis pour installer facilement les extensions Chrome.

Instructions d'Utilisation de l'Extension

                        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                    

Informations de Base sur l'Extension

Nom ChatGPT vs Bard ChatGPT vs Bard
ID dbndihjefcldfjlleakpkkaidakbakmi
URL Officiel https://chromewebstore.google.com/detail/chatgpt-vs-bard/dbndihjefcldfjlleakpkkaidakbakmi
Description Put ChatGPT vs Bard side by side for comparison.
Taille du Fichier 197 KB
Nombre d'Installations 392
Version Actuelle 1.0
Dernière Mise à Jour 2023-03-29
Date de Publication 2023-03-29
Évaluation 4.50/5 Total 2 Évaluations
Développeur hilcj0001
Email [email protected]
Type de Paiement free
Site Web de l'Extension https://github.com/hilcj0001/bard-vs-chatgpt
Langues Prises en Charge 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"
            }
        ]
    }
}