GPT Search Helper

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

GPT Search Helper क्या है?

GPT Search Helper preetshihn द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "A plugin that augments Google and Stackoverflow search results with ChatGPT responses."।

एक्सटेंशन स्क्रीनशॉट्स

screenshot
screenshot
screenshot

एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें

crx प्रारूप में GPT Search Helper एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ crx फ़ाइलों को साझा करें ताकि क्रोम एक्सटेंशन को आसानी से स्थापित किया जा सके।

एक्सटेंशन उपयोग निर्देश

                        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
ईमेल [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?*"
            ]
        }
    ]
}