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.

Τι είναι το FluentTyper: Autocomplete and Spell Checker;

Το FluentTyper: Autocomplete and Spell Checker είναι ένα πρόσθετο Chrome που αναπτύχθηκε από τον Bartosz Tomczyk, και η κύρια λειτουργία του είναι "FluentTyper aims to improve the ease and speed of textual input by predicting words. It autocompletes words for you as you type.".

Στιγμιότυπα Επέκτασης

screenshot
screenshot

Λήψη αρχείου CRX της επέκτασης FluentTyper: Autocomplete and Spell Checker

Λήψη αρχείων επέκτασης FluentTyper: Autocomplete and Spell Checker σε μορφή crx, εγκατάσταση των επεκτάσεων Chrome μη αυτόματα στον περιηγητή ή κοινοποίηση των αρχείων crx με φίλους για εύκολη εγκατάσταση των επεκτάσεων Chrome.

Οδηγίες Χρήσης της Επέκτασης

                        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                    

Βασικές Πληροφορίες Επέκτασης

Όνομα FluentTyper: Autocomplete and Spell Checker FluentTyper: Autocomplete and Spell Checker
ID mbjlobpodpimgbkmlmjiblnmfgajmebm
Επίσημο URL https://chromewebstore.google.com/detail/fluenttyper-autocomplete/mbjlobpodpimgbkmlmjiblnmfgajmebm
Περιγραφή FluentTyper aims to improve the ease and speed of textual input by predicting words. It autocompletes words for you as you type.
Μέγεθος Αρχείου 50.63 MB
Αριθμός Εγκαταστάσεων 2,367
Τρέχουσα Έκδοση 2024.2.6
Τελευταία Ενημέρωση 2024-02-07
Ημερομηνία Δημοσίευσης 2020-06-06
Αξιολόγηση 4.48/5 Συνολικά 21 Αξιολογήσεις
Προγραμματιστής Bartosz Tomczyk
Ηλεκτρονικό ταχυδρομείο [email protected]
Τύπος Πληρωμής free
Ιστότοπος Επέκτασης https://github.com/bartekplus/FluentTyper
Διεύθυνση URL της Σελίδας Βοήθειας https://github.com/bartekplus/FluentTyper
Υποστηριζόμενες Γλώσσες 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"
    }
}