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"
    }
}