ChatGPT for address bar
Use ChatGPT from your address bar
Co to jest ChatGPT for address bar?
ChatGPT for address bar to rozszerzenie Chrome opracowane przez Dreampunk, a jego główną funkcją jest „Use ChatGPT from your address bar”.
Zrzuty ekranu rozszerzenia
Pobierz plik CRX rozszerzenia ChatGPT for address bar
Pobierz pliki rozszerzeń ChatGPT for address bar 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
Just type "chat" and your prompt to make your browsing experience faster and more efficient with ChatGPT. No API Key required. Try the most secure ChatGPT extension.
Podstawowe informacje o rozszerzeniu
Nazwa | |
ID | kohabooomphnoedeinhfkdijpmbegmfi |
Oficjalny URL | https://chrome.google.com/webstore/detail/chatgpt-for-address-bar/kohabooomphnoedeinhfkdijpmbegmfi |
Opis | Use ChatGPT from your address bar |
Rozmiar pliku | 8.59 KB |
Liczba instalacji | 133 |
Aktualna Wersja | 1.3.1 |
Ostatnia Aktualizacja | 2023-03-27 |
Data Publikacji | 2023-02-06 |
Ocena | 3.50/5 Łącznie 6 Oceny |
Deweloper | Dreampunk |
[email protected] | |
Typ Płatności | free |
Adres URL Strony Polityki Prywatności | https://dataplay.cl/timeless-youtube |
Obsługiwane Języki | en-US |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 3, "name": "ChatGPT for address bar", "version": "1.3.1", "description": "Use ChatGPT from your address bar", "permissions": [ "tabs", "activeTab" ], "icons": { "16": "16.png", "128": "128.png" }, "content_scripts": [ { "matches": [ "https:\/\/chat.openai.com\/*" ], "js": [ "content_script.js" ], "run_at": "document_end" } ], "background": { "service_worker": "event_page.js" }, "omnibox": { "keyword": "chat", "suggestion": { "imageUrl": "16.png" } } } |