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.

Vad är FluentTyper: Autocomplete and Spell Checker?

FluentTyper: Autocomplete and Spell Checker är en Chrome-tillägg utvecklad av Bartosz Tomczyk, och dess huvudfunktion är "FluentTyper aims to improve the ease and speed of textual input by predicting words. It autocompletes words for you as you type.".

Tilläggsskärmbilder

screenshot
screenshot

Ladda ner FluentTyper: Autocomplete and Spell Checker-förlängningens CRX-fil

Ladda ner FluentTyper: Autocomplete and Spell Checker-filändelser i crx-format, installera Chrome-tillägg manuellt i webbläsaren eller dela crx-filerna med vänner för att enkelt installera Chrome-tillägg.

Användarmanual för Tillägg

                        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                    

Grundläggande Information om Tillägg

Namn FluentTyper: Autocomplete and Spell Checker FluentTyper: Autocomplete and Spell Checker
ID mbjlobpodpimgbkmlmjiblnmfgajmebm
Officiell webbadress https://chromewebstore.google.com/detail/fluenttyper-autocomplete/mbjlobpodpimgbkmlmjiblnmfgajmebm
Beskrivning FluentTyper aims to improve the ease and speed of textual input by predicting words. It autocompletes words for you as you type.
Filstorlek 50.63 MB
Antal Installationer 2,367
Aktuell Version 2024.2.6
Senast Uppdaterad 2024-02-07
Publiceringsdatum 2020-06-06
Betyg 4.48/5 Totalt 21 Betyg
Utvecklare Bartosz Tomczyk
E-post [email protected]
Betalningssätt free
Tilläggswebbplats https://github.com/bartekplus/FluentTyper
Hjälpsida URL https://github.com/bartekplus/FluentTyper
Stödda Språk 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"
    }
}