SearchGPT
Integrate OpenAI's GPT-3 model responses to your Google search queries
What is SearchGPT?
SearchGPT is a Chrome extension developed by Reuel Joseph, and its main feature is "Integrate OpenAI's GPT-3 model responses to your Google search queries".
Extension Screenshots
Download SearchGPT Extension CRX File
Download SearchGPT extension files in crx format, manually install Chrome extensions in the browser, or share the crx files with friends to easily install Chrome extensions.
Extension Usage Instructions
Get summarized results in seconds by using the power of OpenAI's GPT-3 models to enhance Google searches with artificial intelligence.
Extension Basic Information
Name | SearchGPT |
ID | nemhpjoggiokeajmkekkdkapjehpfaff |
Official URL | https://chromewebstore.google.com/detail/searchgpt/nemhpjoggiokeajmkekkdkapjehpfaff |
Description | Integrate OpenAI's GPT-3 model responses to your Google search queries |
File Size | 16.52 KB |
Installation Count | 451 |
Current Version | 1.1 |
Last Updated | 2023-02-02 |
Publish Date | 2023-01-11 |
Rating | 5.00/5 Total 2 Ratings |
Developer | Reuel Joseph |
[email protected] | |
Payment Type | free |
Extension Website | https://github.com/RooRoo6080/SearchGPT |
Help Page URL | https://github.com/RooRoo6080/SearchGPT |
Supported Languages | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 3, "name": "SearchGPT", "version": "1.1", "description": "Integrate OpenAI's GPT-3 model responses to your Google search queries", "author": "Reuel Joseph", "icons": { "16": "images\/icon-16.png", "32": "images\/icon-32.png", "48": "images\/icon-48.png", "128": "images\/icon-128.png" }, "permissions": [ "storage" ], "content_scripts": [ { "js": [ "scripts\/content.js" ], "matches": [ "https:\/\/www.google.com\/search*" ] } ], "background": { "service_worker": "scripts\/background.js" }, "action": { "default_title": "SearchGPT", "default_popup": "content\/popup.html" } } |