ChatGPT vs Bard

Put ChatGPT vs Bard side by side for comparison.

ChatGPT vs Bard là gì?

ChatGPT vs Bard là một tiện ích mở rộng Chrome được phát triển bởi hilcj0001, và tính năng chính của nó là "Put ChatGPT vs Bard side by side for comparison.".

Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng

screenshot

Tải xuống tệp CRX của tiện ích mở rộng ChatGPT vs Bard

Tải xuống các tệp mở rộng ChatGPT vs Bard dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.

Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng

                        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                    

Thông Tin Cơ Bản về Tiện Ích Mở Rộng

Tên ChatGPT vs Bard ChatGPT vs Bard
ID dbndihjefcldfjlleakpkkaidakbakmi
URL Chính Thức https://chromewebstore.google.com/detail/chatgpt-vs-bard/dbndihjefcldfjlleakpkkaidakbakmi
Mô tả Put ChatGPT vs Bard side by side for comparison.
Kích Thước Tệp 197 KB
Số Lần Cài Đặt 392
Phiên Bản Hiện Tại 1.0
Cập Nhật Lần Cuối 2023-03-29
Ngày Phát Hành 2023-03-29
Đánh Giá 4.50/5 Tổng số 2 Đánh Giá
Nhà Phát Triển hilcj0001
Email [email protected]
Loại Thanh Toán free
Trang Web Mở Rộng https://github.com/hilcj0001/bard-vs-chatgpt
Ngôn Ngữ Được Hỗ Trợ 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"
            }
        ]
    }
}