Text Fu

Text expansion and substitution engine for textareas.

Text Fuとは何ですか?

Text FuはJeff Deroshiaによって開発されたChromeの拡張機能で、その主な機能は「Text expansion and substitution engine for textareas.」です。

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

screenshot
screenshot
screenshot
screenshot
screenshot

Text Fu拡張機能のCRXファイルをダウンロード

Text Fu拡張子のファイルをcrx形式でダウンロードし、ブラウザにChrome拡張機能を手動でインストールするか、crxファイルを友達と共有して簡単にChrome拡張機能をインストールします。

拡張機能の使用方法

                        This productivity extension is designed for users who frequently need to enter the same or similar text in form text areas, e.g., doctors who use medical records systems with web front-ends. They often need to input the same text for every patient, only changing specifics like patient name, date, vitals, etc. One solution is to copy and paste from text files, then search for changes to replace, but this is very inefficient since it requires switching focus to the file browser, then text editor, then back to the web form to paste and change the text.

Text Fu provides a simpler and faster solution using text triggers, which are short abbreviations created by the user that expand to the full text. The placeholder *** is used for any text that needs to be changed, and users can cycle through the placeholders by pressing the F2 key. The text triggers and their expansions are stored in the browser, and are available to use in any text area in an chrome window or tab. No copy/paste or app switching is needed.

Example:
A data entry clerk needs to post productivity reports for multiple people several times a day. For simplicity, let's say the report text looks like this:
"Hello, World. Yesterday was a *** day. Today is going to be a *** day!" where *** could be 'good', 'bad', 'ugly' or anything else. The clerk enters this text in the Text Fu options page and decides to make it's text trigger ".hw". Now the clerk only needs to type .hw followed by the enter/return key, and the trigger (.hw) will be replaced with the full text (Hello, World. Yesterday was a *** day. Today is going to be a *** day!). Then the clerk selects the placeholder text just by pressing F2 (multiple presses cycle through the placeholders). The clerk replaces placeholder with the actual data and is ready to submit, all without leaving the keyboard to use the mouse!

Text triggers and their expansions can be created/updated/deleted in the Text Fu options page, or they can be fetched from a remote URL as a json object where each property name is a text trigger and each property value is the expanded text like the following:
{
  ".hw": "Hello, World. Yesterday was a *** day. Today is going to be a *** day!",
  ".mlk":"Darkness cannot drive out darkness; only light can do that. Hate cannot drive out hate; only love can do that.\r\n\r\nMartin Luther King, Jr."
}                    

拡張機能の基本情報

名前 Text Fu Text Fu
ID fpcnbmimljhenhnjfgnibddhffpncmch
公式URL https://chromewebstore.google.com/detail/text-fu/fpcnbmimljhenhnjfgnibddhffpncmch
説明 Text expansion and substitution engine for textareas.
ファイルサイズ 74.3 KB
インストール数 70
現在のバージョン 1.1
最終更新日 2023-02-22
公開日 2015-07-10
評価 3.00/5 合計 1 レビュー
開発者 Jeff Deroshia
Eメール [email protected]
支払い方法 free
対応言語 en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Text Fu",
    "version": "1.1",
    "description": "Text expansion and substitution engine for textareas.",
    "permissions": [
        "storage",
        ""
    ],
    "background": {
        "scripts": [
            "jquery\/jquery-2.0.2.min.js",
            "jquery\/jquery.textfu.js",
            "background.js"
        ]
    },
    "browser_action": {
        "default_icon": "TextFu19.png",
        "default_title": "Text Fu"
    },
    "options_page": "options.html",
    "options_ui": {
        "page": "options.html",
        "chrome_style": true,
        "open_in_tab": false
    },
    "minimum_chrome_version": "39",
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "all_frames": true,
            "js": [
                "jquery\/jquery-2.0.2.min.js",
                "jquery\/jquery.textfu.js",
                "content_scripts.js"
            ],
            "run_at": "document_end"
        }
    ],
    "icons": {
        "16": "TextFu16.png",
        "48": "TextFu48.png",
        "128": "TextFu128.png",
        "256": "TextFu256.png"
    },
    "manifest_version": 2
}