FluentTyper: Autocomplete and Spell Checker

FluentTyper aims to improve the ease and speed of textual input by predicting words. It autocompletes words for you as you type.

Cos'è FluentTyper: Autocomplete and Spell Checker?

FluentTyper: Autocomplete and Spell Checker è un'estensione di Chrome sviluppata da Bartosz Tomczyk, e la sua funzione principale è "FluentTyper aims to improve the ease and speed of textual input by predicting words. It autocompletes words for you as you type.".

Screenshot dell'Estensione

screenshot
screenshot

Scarica il file CRX dell'estensione FluentTyper: Autocomplete and Spell Checker

Scarica i file di estensione FluentTyper: Autocomplete and Spell Checker in formato crx, installa manualmente le estensioni di Chrome nel browser o condividi i file crx con gli amici per installare facilmente le estensioni di Chrome.

Istruzioni per l'Uso dell'Estensione

                        FluentTyper aims to improve the ease and speed of textual input by predicting words. It autocompletes words for you as you type. It saves you time when writing, improves your writing with spelling and autocomplete suggestions, and provides text expansions.Text expansions allow you to accomplish more and streamline your work.

Do you ever get tired of typing out long email addresses or frequently used phrases, and wish you could save time when typing on your computer? This tool can help! With it, you can type in letter combinations like 'callMe' and have 'Call me back once you're free' appear on your computer screen.

This extension works on most websites, but there are some exceptions. If you encounter an incompatible website, please create an issue on GitHub, and I'll do my best to resolve it.

This tool values the privacy of your data. It doesn't upload any of your data to the internet, and it works offline. Predictions are generated on your own PC

It is a writing assistant with features such as a spell checker, text expander, and predictive auto-complete.

As you start typing, FluentTyper will display a pop-up with a list of suggested words, similar to your phone keyboard. You can use the arrow keys (↑, ↓) to navigate the list of suggested words, and then press Enter or Tab to confirm your selection. To hide the list of suggested words, you can either press the Escape key or continue typing.

Supported languages: English, Spanish, French, Croatian, Greek, Swedish, Polish, German                    

Informazioni di Base sull'Estensione

Nome FluentTyper: Autocomplete and Spell Checker FluentTyper: Autocomplete and Spell Checker
ID mbjlobpodpimgbkmlmjiblnmfgajmebm
URL Ufficiale https://chromewebstore.google.com/detail/fluenttyper-autocomplete/mbjlobpodpimgbkmlmjiblnmfgajmebm
Descrizione FluentTyper aims to improve the ease and speed of textual input by predicting words. It autocompletes words for you as you type.
Dimensione del File 50.63 MB
Conteggio Installazioni 2,367
Versione Corrente 2024.2.6
Ultimo Aggiornamento 2024-02-07
Data di Pubblicazione 2020-06-06
Valutazione 4.48/5 Totale 21 Valutazioni
Sviluppatore Bartosz Tomczyk
Email [email protected]
Tipo di Pagamento free
Sito Web dell'Estensione https://github.com/bartekplus/FluentTyper
URL della Pagina di Aiuto https://github.com/bartekplus/FluentTyper
Lingue Supportate en
manifest.json
{
    "background": {
        "service_worker": "background.js",
        "type": "module"
    },
    "optional_host_permissions": [
        ""
    ],
    "content_scripts": [
        {
            "css": [
                "third_party\/tribute\/tribute.css"
            ],
            "js": [
                "third_party\/tribute\/tribute.js",
                "cs.js"
            ],
            "matches": [
                ""
            ],
            "run_at": "document_idle",
            "all_frames": true,
            "match_about_blank": true
        }
    ],
    "description": "FluentTyper aims to improve the ease and speed of textual input by predicting words. It autocompletes words for you as you type.",
    "icons": {
        "256": "icon\/icon256.png",
        "128": "icon\/icon128.png",
        "96": "icon\/icon96.png",
        "72": "icon\/icon72.png",
        "64": "icon\/icon64.png",
        "48": "icon\/icon48.png",
        "32": "icon\/icon32.png",
        "16": "icon\/icon16.png"
    },
    "web_accessible_resources": [
        {
            "resources": [
                "icon\/icon*",
                "third_party\/libpresage\/*"
            ],
            "matches": [
                ""
            ]
        }
    ],
    "name": "FluentTyper: Autocomplete and Spell Checker",
    "options_ui": {
        "page": "options.html",
        "open_in_tab": true
    },
    "permissions": [
        "storage",
        "activeTab"
    ],
    "update_url": "http:\/\/clients2.google.com\/service\/update2\/crx",
    "version": "2024.2.6",
    "manifest_version": 3,
    "content_security_policy": {
        "extension_pages": "script-src 'self' 'wasm-unsafe-eval'; object-src 'self';"
    },
    "commands": {
        "toggle-ft-active-tab": {
            "suggested_key": {
                "default": "Ctrl+Shift+F",
                "mac": "Command+Shift+F"
            },
            "description": "Toggle on\/off FluentTyper on active tab"
        }
    },
    "offline_enabled": true,
    "action": {
        "default_icon": {
            "256": "icon\/icon256.png",
            "128": "icon\/icon128.png",
            "96": "icon\/icon96.png",
            "72": "icon\/icon72.png",
            "64": "icon\/icon64.png",
            "48": "icon\/icon48.png",
            "32": "icon\/icon32.png",
            "16": "icon\/icon16.png"
        },
        "default_popup": "popup\/popup.html",
        "default_title": "Do action"
    }
}