ChatGPT vs Bard

Put ChatGPT vs Bard side by side for comparison.

ما هو ChatGPT vs Bard؟

ChatGPT vs Bard هو إضافة Chrome تم تطويرها بواسطة hilcj0001، والميزة الرئيسية لها هي "Put ChatGPT vs Bard side by side for comparison.".

لقطات شاشة التمديد

screenshot

تحميل ملف CRX للإضافة ChatGPT vs Bard

قم بتنزيل ملفات الامتداد ChatGPT vs Bard بتنسيق crx ، وقم بتثبيت الامتدادات يدويًا في متصفح Chrome ، أو شارك ملفات crx مع الأصدقاء لتثبيت الامتدادات بسهولة.

تعليمات استخدام التمديد

                        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                    

معلومات أساسية عن التمديد

الاسم ChatGPT vs Bard ChatGPT vs Bard
ID dbndihjefcldfjlleakpkkaidakbakmi
عنوان URL الرسمي https://chromewebstore.google.com/detail/chatgpt-vs-bard/dbndihjefcldfjlleakpkkaidakbakmi
الوصف Put ChatGPT vs Bard side by side for comparison.
حجم الملف 197 KB
عدد التثبيتات 392
النسخة الحالية 1.0
آخر تحديث 2023-03-29
تاريخ النشر 2023-03-29
تقييم 4.50/5 مجموع تقييمات 2
المطور hilcj0001
البريد الإلكتروني [email protected]
نوع الدفع free
موقع الإضافة https://github.com/hilcj0001/bard-vs-chatgpt
اللغات المدعومة 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"
            }
        ]
    }
}