ChatGPT Powered Search

ChatGPT Powered Search! Now you can get ChatGPT's intelligent and informative responses directly on any website.

Что такое ChatGPT Powered Search?

ChatGPT Powered Search - это расширение Chrome, разработанное https://chrome-gpt.net, и его основная функция - "ChatGPT Powered Search! Now you can get ChatGPT's intelligent and informative responses directly on any website.".

Снимки экрана расширения

screenshot
screenshot
screenshot
screenshot

Скачать файл CRX расширения ChatGPT Powered Search

Скачайте файлы расширений ChatGPT Powered Search в формате crx, установите расширения Chrome вручную в браузере или поделитесь файлами crx с друзьями, чтобы легко установить расширения Chrome.

Инструкции по использованию расширения

                        We are proud to introduce chrome extension, designed to enhance your Search experience with ChatGPT. This extension offers a range of exciting features that enable you to communicate with ChatGPT AI more efficiently.

By clicking "Add to Chrome", I accept and agree to install the “ChatGPT Powered Search” Chrome extension and set Chrome New Tab provided by the service and the Terms of Use and Privacy Policy. The extension will update your default search settings with search results by Microsoft Bing.

Privacy Policy: https://chrome-gpt.net/privacy.html
Terms of Use: https://chrome-gpt.net/terms.html
About Us: https://chrome-gpt.net/about.html
Contact Us: https://chrome-gpt.net/contact.html

Features:
Using the extension's floating icon on each webpage you can quickly access ChatGPT with just one click

ChatGPT Powered Search will enhance your query with a clear and concise answer, much like artificial intelligence can. No longer will you need to spend time clicking on multiple links in search of the key information. ChatGPT Powered Search filters out unnecessary content and delivers accurate information in a pop-up window to the right of the search results

To use the extension, simply log in to https://chat.openai.com. If you experience any issues, try reopening chat.openai.com as the service may be under high demand.

Upgrade your web searching experience with ChatGPT' Powered Search Chrome extension today!                    

Основная информация о расширении

Название ChatGPT Powered Search ChatGPT Powered Search
ID nhpgknpddjnapobgocnpjkbfnjfkedpj
Официальный URL https://chromewebstore.google.com/detail/chatgpt-powered-search/nhpgknpddjnapobgocnpjkbfnjfkedpj
Описание ChatGPT Powered Search! Now you can get ChatGPT's intelligent and informative responses directly on any website.
Размер файла 428 KB
Количество установок 705,220
Текущая Версия 1.0.8
Последнее Обновление 2024-01-02
Дата публикации 2023-05-10
Рейтинг 4.99/5 Всего 319 оценок
Разработчик https://chrome-gpt.net
Электронная почта [email protected]
Тип оплаты free
Поддерживаемые языки id,ms,de,en,en-GB,en-US,fil,fr,sw,nl,no,vi,tr,ca,da,et,es,hr,it,lv,lt,hu,pt-PT,ro,sk,sl,fi,sv,cs,el,sr,bg,iw,fa,mr,hi,bn,gu,ta,te,kn-IN,ml,th,am-ET,ar,zh-TW,ja,ko
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 3,
    "default_locale": "en",
    "name": "__MSG_appName__",
    "description": "__MSG_appDesc__",
    "short_name": "__MSG_appName__",
    "background": {
        "service_worker": "scripts\/bg.js"
    },
    "content_scripts": [
        {
            "matches": [
                "*:\/\/*\/*"
            ],
            "exclude_matches": [
                "https:\/\/chat.openai.com\/*",
                "*:\/\/www.bing.com\/*"
            ],
            "js": [
                ".\/scripts\/content.js"
            ],
            "css": [
                ".\/main-styles\/content.css"
            ],
            "all_frames": false
        },
        {
            "run_at": "document_start",
            "matches": [
                "https:\/\/chat.openai.com\/chat"
            ],
            "js": [
                ".\/scripts\/AIcontent.js"
            ],
            "css": [
                ".\/styles\/ai.css"
            ],
            "all_frames": true
        }
    ],
    "action": {
        "default_icon": {
            "128": "icons\/icon.png",
            "64": "icons\/icon.png",
            "32": "icons\/icon.png",
            "16": "icons\/icon.png"
        },
        "default_title": "__MSG_appName__",
        "default_popup": "popup.html"
    },
    "chrome_settings_overrides": {
        "search_provider": {
            "encoding": "UTF-8",
            "favicon_url": "https:\/\/chrome-gpt.net\/favicon.ico",
            "is_default": true,
            "keyword": "ChatGPT",
            "name": "ChatGPT Powered Search",
            "search_url": "https:\/\/search.chrome-gpt.net\/search\/?id={chrome.runtime.id}&q={searchTerms}"
        }
    },
    "icons": {
        "128": "icons\/icon.png",
        "64": "icons\/icon.png",
        "32": "icons\/icon.png",
        "16": "icons\/icon.png"
    },
    "permissions": [
        "storage",
        "webRequest",
        "declarativeNetRequest",
        "alarms"
    ],
    "host_permissions": [
        "https:\/\/search.chrome-gpt.net\/*"
    ],
    "web_accessible_resources": [
        {
            "resources": [
                "*"
            ],
            "matches": [
                "*:\/\/*\/*"
            ]
        }
    ],
    "version": "1.0.8"
}