Type Genius

An AI-powered Chrome extension that auto completes your whole world

Co to jest Type Genius?

Type Genius to rozszerzenie Chrome opracowane przez m4tuna, a jego główną funkcją jest „An AI-powered Chrome extension that auto completes your whole world”.

Zrzuty ekranu rozszerzenia

screenshot

Pobierz plik CRX rozszerzenia Type Genius

Pobierz pliki rozszerzeń Type Genius 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 Genius is powered by GPT, a state-of-the-art natural language processing AI developed by OpenAI. This groundbreaking Chrome extension elevates your browsing experience by providing suggestions to complete your text in textareas across web pages. Now, you can enjoy fast, intelligent, and context-aware autocomplete suggestions for your searches, emails, social media posts, and more!                    

Podstawowe informacje o rozszerzeniu

Nazwa Type Genius Type Genius
ID ejokcdmbiifiagicppiakpneifaofghh
Oficjalny URL https://chromewebstore.google.com/detail/type-genius/ejokcdmbiifiagicppiakpneifaofghh
Opis An AI-powered Chrome extension that auto completes your whole world
Rozmiar pliku 296 KB
Liczba instalacji 85
Aktualna Wersja 0.3.1
Ostatnia Aktualizacja 2023-04-29
Data Publikacji 2023-04-29
Ocena 4.00/5 Łącznie 1 Oceny
Deweloper m4tuna
E-mail [email protected]
Typ Płatności free
Strona Rozszerzenia https://main--tiny-entremet-e2b781.netlify.app/
Obsługiwane Języki en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Type Genius",
    "description": "An AI-powered Chrome extension that auto completes your whole world",
    "version": "0.3.1",
    "manifest_version": 3,
    "background": {
        "service_worker": "serviceWorker.js"
    },
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "js": [
                "contentScript.js"
            ],
            "css": [
                "styles\/contentScript.css"
            ]
        }
    ],
    "permissions": [
        "storage"
    ],
    "options_ui": {
        "page": "options.html",
        "open_in_tab": true
    },
    "action": {
        "default_title": "An AI-powered Chrome extension that auto completes your whole world",
        "default_popup": "popup.html",
        "default_icon": {
            "16": "\/icons\/16x.png",
            "32": "\/icons\/32x.png",
            "48": "\/icons\/48x.png",
            "128": "\/icons\/128x.png"
        }
    },
    "icons": {
        "16": "\/icons\/16x.png",
        "32": "\/icons\/32x.png",
        "48": "\/icons\/48x.png",
        "128": "\/icons\/128x.png"
    }
}