SearchGPT
Integrate OpenAI's GPT-3 model responses to your Google search queries
Co to jest SearchGPT?
SearchGPT to rozszerzenie Chrome opracowane przez Reuel Joseph, a jego główną funkcją jest „Integrate OpenAI's GPT-3 model responses to your Google search queries”.
Zrzuty ekranu rozszerzenia
Pobierz plik CRX rozszerzenia SearchGPT
Pobierz pliki rozszerzeń SearchGPT w formacie crx, zainstaluj ręcznie rozszerzenia Chrome w przeglądarce lub udostępnij pliki crx znajomym, aby łatwo zainstalować rozszerzenia Chrome.
Instrukcja Użytkowania Rozszerzenia
Get summarized results in seconds by using the power of OpenAI's GPT-3 models to enhance Google searches with artificial intelligence. Podstawowe informacje o rozszerzeniu
| Nazwa | |
| ID | nemhpjoggiokeajmkekkdkapjehpfaff |
| Oficjalny URL | https://chromewebstore.google.com/detail/searchgpt/nemhpjoggiokeajmkekkdkapjehpfaff |
| Opis | Integrate OpenAI's GPT-3 model responses to your Google search queries |
| Rozmiar pliku | 16.52 KB |
| Liczba instalacji | 451 |
| Aktualna Wersja | 1.1 |
| Ostatnia Aktualizacja | 2023-02-02 |
| Data Publikacji | 2023-01-11 |
| Ocena | 5.00/5 Łącznie 2 Oceny |
| Deweloper | Reuel Joseph |
| [email protected] | |
| Typ Płatności | free |
| Strona Rozszerzenia | https://github.com/RooRoo6080/SearchGPT |
| Adres URL Strony Pomocy | https://github.com/RooRoo6080/SearchGPT |
| Obsługiwane Języki | 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"
}
} | |