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
公式URL 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
Eメール [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?*"
            ]
        }
    ]
}