ChatGPT vs Bard

Put ChatGPT vs Bard side by side for comparison.

什麼是ChatGPT vs Bard?

ChatGPT vs Bard是由hilcj0001開發的Chrome擴展程式,該擴展的主要功能是“Put ChatGPT vs Bard side by side for comparison.”。

擴展截圖

screenshot

下載ChatGPT vs Bard擴展crx文件

下載ChatGPT vs Bard擴展crx格式的文件,手動將Chrome擴充功能安裝到瀏覽器中,也可以將crx文件分享給朋友,輕鬆安裝Chrome擴充功能。

擴展使用說明

                        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
官方網址 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"
            }
        ]
    }
}