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はBartosz Tomczykによって開発されたChromeの拡張機能で、その主な機能は「FluentTyper aims to improve the ease and speed of textual input by predicting words. It autocompletes words for you as you type.」です。

拡張機能のスクリーンショット

screenshot
screenshot

FluentTyper: Autocomplete and Spell Checker拡張機能のCRXファイルをダウンロード

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
Eメール [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"
    }
}