Bard GPT

Best of both bots

Co to jest Bard GPT?

Bard GPT to rozszerzenie Chrome opracowane przez parammittal16, a jego główną funkcją jest „Best of both bots”.

Zrzuty ekranu rozszerzenia

screenshot
screenshot
screenshot
screenshot

Pobierz plik CRX rozszerzenia Bard GPT

Pobierz pliki rozszerzeń Bard GPT w formacie crx, zainstaluj ręcznie rozszerzenia Chrome w przeglądarce lub udostępnij pliki crx znajomym, aby łatwo zainstalować rozszerzenia Chrome.

Instrukcja Użytkowania Rozszerzenia

                        Seamlessly combine ChatGPT and Bard AI in a user friendly side-to-side view.

This is a chrome extension that shows responses from ChatGPT alongside Bard.

🚩Features ---

👉🏻 Dual AI-Powered Interface. 🚀
👉🏻 Easy side to side comparison 👀
👉🏻 No need to switch tabs
👉🏻 Just hit ----  ctrl / ⌘ + j  ---- and prompt 🪄
👉🏻 Darkmode ☀️
👉🏻 Fluid Interaction 🔍
👉🏻 Fast access using popup ⚡️
👉🏻 No inApp login 100% Free 🎉


👀 How to use?

Just Install the extension and start using after login to bard and ChatGPT. 
Note - Use ctrl +j or ⌘ + j to quick launch from any tab
Save time ⏳ and money 🤑.

Update --

1.1.0 -> Bard working correct, shortcut on windows fixed


🤔 FAQ ---

1. What is ChatGPT?
ChatGPT is a language model developed by OpenAI, it's a type of AI that is able to understand and generate human-like text. It's been trained on a vast amount of text data from the internet, so it has a good understanding of various topics and it can perform various natural language processing tasks such as language translation, text summarisation, and text completion. Essentially, it's a computer program that can communicate with people in a way that feels natural and human-like.

2. What is Bard AI?
Bard AI is a large language model (LLM) chatbot developed by Google AI. It was first announced in February 2023. Bard is trained on a massive dataset of text and code, and can generate text, translate languages, write different kinds of creative content, and answer your questions in an informative way. 

3. What is BardGPT?
BardGPT is a Chrome extension that allows you to open OpenAI's ChatGPT and Google's Bard AI side-by-side and enter a prompt to search and view results side-by-side together.

3. Is ChatGPT for Google free to use?
Yes, the extension is free to use.

4. What search engines are supported?
Currently, ChatGPT for Google supports Google currently

5. Do I need a ChatGPT/Bard account?
Yes, you need to have both ChatGPT and Google Bard accounts to use this extension. You can create an account for free at chat.openai.com and https://bard.google.com.                    

Podstawowe informacje o rozszerzeniu

Nazwa Bard GPT Bard GPT
ID kiddojmdiedebigkffjmpbfhmffkafad
Oficjalny URL https://chromewebstore.google.com/detail/bard-gpt/kiddojmdiedebigkffjmpbfhmffkafad
Opis Best of both bots
Rozmiar pliku 180 KB
Liczba instalacji 7,000
Aktualna Wersja 1.1.0
Ostatnia Aktualizacja 2024-01-08
Data Publikacji 2023-06-16
Ocena 3.71/5 Łącznie 28 Oceny
Deweloper parammittal16
E-mail [email protected]
Typ Płatności free
Adres URL Strony Polityki Prywatności https://parammittal16.github.io/browser-extension-privacypolicy
Obsługiwane Języki en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "description": "Best of both bots",
    "background": {
        "service_worker": "index.js"
    },
    "version": "1.1.0",
    "name": "Bard GPT",
    "manifest_version": 3,
    "launch": {
        "web_url": "https:\/\/bardgpt.framer.ai\/"
    },
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "js": [
                "content\/highlight.min.js",
                "content\/markdown-it.min.js",
                "content\/content.js"
            ],
            "css": [
                "css\/content.css"
            ]
        }
    ],
    "web_accessible_resources": [
        {
            "resources": [
                "static\/images\/icon-64.png",
                "static\/images\/maximizeIcon.png",
                "static\/images\/gptLogo.svg",
                "static\/images\/info.png",
                "static\/images\/loader.png",
                "static\/images\/minimizeIcon.png",
                "static\/images\/editingIcon.svg",
                "static\/images\/searchIcon.svg",
                "static\/images\/copyIcon.svg",
                "static\/images\/bardLogo.svg",
                "static\/images\/bardGptLogo.png",
                "static\/images\/closeIcon.png",
                "static\/images\/daymode.png",
                "static\/images\/fullpage.png",
                "static\/images\/darkmode.png",
                "static\/images\/bardGptLogowhite.png",
                "static\/font\/Roboto-Regular.ttf"
            ],
            "matches": [
                ""
            ]
        }
    ],
    "action": {
        "default_popup": "index.html",
        "default_icon": {
            "16": "\/static\/images\/icon-16.png",
            "32": "\/static\/images\/icon-32.png",
            "48": "\/static\/images\/icon-48.png",
            "64": "\/static\/images\/icon-64.png",
            "128": "\/static\/images\/icon-128.png"
        }
    },
    "icons": {
        "16": "\/static\/images\/icon-16.png",
        "32": "\/static\/images\/icon-32.png",
        "48": "\/static\/images\/icon-48.png",
        "64": "\/static\/images\/icon-64.png",
        "128": "\/static\/images\/icon-128.png"
    },
    "host_permissions": [
        ""
    ],
    "commands": {
        "_execute_action": {
            "suggested_key": {
                "default": "Ctrl+M",
                "mac": "Command+J"
            },
            "description": "Start the extension"
        }
    },
    "permissions": [
        "notifications",
        "storage",
        "contextMenus"
    ]
}