TypeAI
Generate text using Chat GPT on every website input field
Co to jest TypeAI?
TypeAI to rozszerzenie Chrome opracowane przez https://karthikponnam.dev, a jego główną funkcją jest „Generate text using Chat GPT on every website input field”.
Zrzuty ekranu rozszerzenia
Pobierz plik CRX rozszerzenia TypeAI
Pobierz pliki rozszerzeń TypeAI 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
Type AI - Your Ultimate Text Generation Companion!
TypeAI is your one-stop solution for all your text generation needs.
Try TypeAI now and unlock the full potential of AI-powered text generation. Say goodbye to tedious writing tasks and let TypeAI be your ultimate text generation companion. Podstawowe informacje o rozszerzeniu
| Nazwa | |
| ID | epleehoimjhfndhecgchgfcdmhjanhbi |
| Oficjalny URL | https://chromewebstore.google.com/detail/typeai/epleehoimjhfndhecgchgfcdmhjanhbi |
| Opis | Generate text using Chat GPT on every website input field |
| Rozmiar pliku | 27.84 KB |
| Liczba instalacji | 55 |
| Aktualna Wersja | 1.3 |
| Ostatnia Aktualizacja | 2023-04-21 |
| Data Publikacji | 2023-04-20 |
| Deweloper | https://karthikponnam.dev |
| [email protected] | |
| Typ Płatności | free |
| Strona Rozszerzenia | https://typeai.karthikponnam.dev/ |
| Adres URL Strony Pomocy | https://typeai.karthikponnam.dev/ |
| Obsługiwane Języki | en |
| manifest.json | |
{
"update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
"manifest_version": 3,
"name": "TypeAI",
"version": "1.3",
"description": "Generate text using Chat GPT on every website input field",
"icons": {
"48": "icons\/logo.png",
"96": "icons\/logo-96.png"
},
"permissions": [
"activeTab",
"storage"
],
"action": {
"default_popup": "popup\/popup.html"
},
"background": {
"service_worker": "background.js"
},
"content_scripts": [
{
"matches": [
"https:\/\/*\/*",
"http:\/\/*\/*"
],
"js": [
"browser-polyfill.js",
"typeai.js"
],
"run_at": "document_start"
}
]
} | |