GPT Search Helper

A plugin that augments Google and Stackoverflow search results with ChatGPT responses.

什麼是GPT Search Helper?

GPT Search Helper是由preetshihn開發的Chrome擴展程式,該擴展的主要功能是“A plugin that augments Google and Stackoverflow search results with ChatGPT responses.”。

擴展截圖

screenshot
screenshot
screenshot

下載GPT Search Helper擴展crx文件

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

擴展使用說明

                        When you search for something on Google or Stackoverflow,  this extension will try to augment the results with the response from OpenAI's ChatGPT. You must have the ChatGPT bot open in a tab (https://chat.openai.com/chat). 

This extension will ask the bot the searched query in that chat tab, and pipe the results into your Google and Stackoverflow search results. 

By default, the extension only sends the query to ChatGPT window when you open the sidebar by clicking on the 🤖 button. But you can change the extension settings to automatically trigger ChatGPT search. Note that if set to automatic, you may inadvertently reach limits to your free ChatGPT usage.                    

擴展基本資訊

名稱 GPT Search Helper GPT Search Helper
ID lefofhdldjphdggnbigcgdbbdllfbgfc
官方網址 https://chromewebstore.google.com/detail/gpt-search-helper/lefofhdldjphdggnbigcgdbbdllfbgfc
簡介 A plugin that augments Google and Stackoverflow search results with ChatGPT responses.
檔案大小 38.74 KB
安裝次數 167
目前版本 0.2
更新時間 2022-12-14
上架時間 2022-12-14
評分 1.00/5 共 1 次評分
開發者 preetshihn
電子郵箱 [email protected]
付費類型 free
支援的語言 en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 3,
    "name": "GPT Search Helper",
    "version": "0.2",
    "description": "A plugin that augments Google and Stackoverflow search results with ChatGPT responses.",
    "icons": {
        "16": "images\/icon16.png",
        "32": "images\/icon32.png",
        "48": "images\/icon48.png",
        "128": "images\/icon128.png"
    },
    "permissions": [
        "webNavigation",
        "storage"
    ],
    "background": {
        "service_worker": "lib\/background.js"
    },
    "options_page": "options.html",
    "content_scripts": [
        {
            "js": [
                "lib\/chat-content.js"
            ],
            "matches": [
                "https:\/\/chat.openai.com\/chat\/",
                "https:\/\/chat.openai.com\/chat\/*"
            ]
        },
        {
            "js": [
                "lib\/google-content.js"
            ],
            "matches": [
                "https:\/\/www.google.com\/search?*",
                "https:\/\/www.google.ca\/search?*",
                "https:\/\/www.google.dk\/search?*",
                "https:\/\/www.google.de\/search?*",
                "https:\/\/www.google.de\/search?*",
                "https:\/\/www.google.com.au\/search?*",
                "https:\/\/www.google.co.uk\/search?*",
                "https:\/\/www.google.co.nz\/search?*",
                "https:\/\/stackoverflow.com\/search?*"
            ]
        }
    ]
}