Quick Search with ChatGPT

Incorporate ChatGPT responses into search engine outcomes! Works with Google, Bing, Yahoo etc. Gain access to ChatGPT in a pop-up.

Quick Search with ChatGPTคืออะไร?

Quick Search with ChatGPT เป็นส่วนขยายของ Chrome ที่พัฒนาโดย ChatGPT Lite และคุณลักษณะหลักของมันคือ "Incorporate ChatGPT responses into search engine outcomes! Works with Google, Bing, Yahoo etc. Gain access to ChatGPT in a pop-up."

ภาพหน้าจอของส่วนขยาย

screenshot
screenshot
screenshot

ดาวน์โหลดไฟล์ CRX ของส่วนขยาย Quick Search with ChatGPT

ดาวน์โหลดไฟล์ส่วนขยาย Quick Search with ChatGPT ในรูปแบบ crx และติดตั้งส่วนขยาย Chrome ด้วยตนเองในเบราว์เซอร์หรือแชร์ไฟล์ crx กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย Chrome อย่างง่ายดาย

คำแนะนำในการใช้ส่วนขยาย

                        GPT Search is an extension that allows you to access ChatGPT answers alongside Google, Bing, DuckDuckGo, and other search engines. This AI Copilot will help you digest information from the web quickly, regardless of the content's length or difficulty.

**Features**

* Supports all popular search engines
* Chat with ChatGPT about the query and answer
* Supports official OpenAI API (Both GPT-3.5-Turbo and GPT-3)
* Supports ChatGPT Plus and GPT-4 (GPT-4 requires manual enable in options)
* Access ChatGPT from extension popup
* Markdown rendering
* Code highlights
* Dark mode
* Feedback to improve ChatGPT
* Custom trigger mode
* Copy to clipboard
* Summarize YouTube videos and web articles

**How to use**

1. Install the extension from the Chrome Web Store.
2. Open a search engine in your Chrome browser.
3. Type in a search query.
4. The ChatGPT response will appear alongside the normal search engine results.
5. You can click on the ChatGPT response to open a chat window with ChatGPT.
6. In the chat window, you can ask ChatGPT questions about the search query.
7. ChatGPT will answer your questions and provide additional information.
8. To summarize a web page, right click on the webpage and then click on the "Summarize Page" button. You can also summarize a YouTube video by this way.

**Benefits**

* Save time and effort by getting the information you need quickly and easily.
* Get more comprehensive and informative answers by asking ChatGPT questions.
* Improve your research skills by learning from ChatGPT's insights.                    

ข้อมูลพื้นฐานของส่วนขยาย

ชื่อ Quick Search with ChatGPT Quick Search with ChatGPT
ID khdnaopfklkdcloiinccnaflffmfcioa
URL อย่างเป็นทางการ https://chromewebstore.google.com/detail/quick-search-with-chatgpt/khdnaopfklkdcloiinccnaflffmfcioa
คำอธิบาย Incorporate ChatGPT responses into search engine outcomes! Works with Google, Bing, Yahoo etc. Gain access to ChatGPT in a pop-up.
ขนาดไฟล์ 835 KB
จำนวนการติดตั้ง 1,042,016
เวอร์ชันปัจจุบัน 1.0.3
อัปเดตครั้งล่าสุด 2024-02-02
วันที่เผยแพร่ 2023-03-28
คะแนน 4.76/5 รวมทั้งหมด 506 คะแนน
ผู้พัฒนา ChatGPT Lite
อีเมล [email protected]
ประเภทการชำระเงิน free
URL หน้านโยบายความเป็นส่วนตัว https://sites.google.com/view/chatgptlite/home
ภาษาที่รองรับ id,ms,de,en,en-GB,en-US,fil,fr,sw,nl,no,vi,tr,ca,da,et,es,es-419,hr,it,lv,lt,hu,pl,pt-BR,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-CN,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": "js\/sw.js"
    },
    "content_scripts": [
        {
            "matches": [
                "*:\/\/*\/*"
            ],
            "exclude_matches": [
                "https:\/\/chat.openai.com\/*"
            ],
            "js": [
                ".\/js\/cnt.js"
            ],
            "css": [
                ".\/css\/cnt.css"
            ],
            "all_frames": false
        },
        {
            "run_at": "document_start",
            "matches": [
                "https:\/\/chat.openai.com\/"
            ],
            "js": [
                ".\/js\/cntGPT.js"
            ],
            "css": [
                ".\/css\/gptc.css"
            ],
            "all_frames": true
        }
    ],
    "action": {
        "default_icon": {
            "128": "icons\/i-128.png",
            "64": "icons\/i-64.png",
            "32": "icons\/i-32.png",
            "16": "icons\/i-16.png"
        },
        "default_title": "__MSG_appName__",
        "default_popup": "popup.html"
    },
    "icons": {
        "128": "icons\/i-128.png",
        "64": "icons\/i-64.png",
        "32": "icons\/i-32.png",
        "16": "icons\/i-16.png"
    },
    "permissions": [
        "storage",
        "contextMenus",
        "webRequest"
    ],
    "host_permissions": [
        "*:\/\/*\/*"
    ],
    "web_accessible_resources": [
        {
            "resources": [
                "*"
            ],
            "matches": [
                "*:\/\/*\/*"
            ]
        }
    ],
    "version": "1.0.3"
}