Textarea Cache

Allows to save automatically the content in a text input field.

Textarea Cacheとは何ですか?

Textarea Cacheはhttps://blog.wildsky.ccによって開発されたChromeの拡張機能で、その主な機能は「Allows to save automatically the content in a text input field.」です。

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

screenshot

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

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

拡張機能の使用方法

                        This add-on will automatically save the content in textarea or WYSIWYG editor when user is typing. User can recover the saved texts in the cache panel, even the tab or the window is closed unexpectedly.                    

拡張機能の基本情報

名前 Textarea Cache Textarea Cache
ID chpphekfimlabghbdankokcohcmnbmab
公式URL https://chromewebstore.google.com/detail/textarea-cache/chpphekfimlabghbdankokcohcmnbmab
説明 Allows to save automatically the content in a text input field.
ファイルサイズ 671 KB
インストール数 3,051
現在のバージョン 4.5.0
最終更新日 2022-07-12
公開日 2019-04-21
評価 4.00/5 合計 14 レビュー
開発者 https://blog.wildsky.cc
Eメール [email protected]
支払い方法 free
拡張機能のウェブサイト https://github.com/wildskyf/TextareaCache/
ヘルプページのURL https://github.com/wildskyf/TextareaCache/issues
プライバシーポリシーページのURL https://readmoo.com/terms/privacy
対応言語 de,en,zh-CN,zh-TW
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "applications": {
        "gecko": {
            "id": "[email protected]",
            "strict_min_version": "51.0"
        }
    },
    "manifest_version": 2,
    "name": "Textarea Cache",
    "version": "4.5.0",
    "default_locale": "en",
    "description": "Allows to save automatically the content in a text input field.",
    "homepage_url": "https:\/\/github.com\/wildskyf\/TextareaCache",
    "icons": {
        "48": "icons\/icon.png"
    },
    "permissions": [
        "storage",
        "clipboardWrite",
        "menus",
        "alarms"
    ],
    "browser_action": {
        "browser_style": true,
        "default_title": "View your saved data (Textarea Cache)",
        "default_icon": "icons\/tacache-48.png"
    },
    "content_scripts": [
        {
            "match_about_blank": true,
            "all_frames": true,
            "matches": [
                ""
            ],
            "run_at": "document_idle",
            "js": [
                "browser-polyfill.min.js",
                "content-script.js"
            ]
        }
    ],
    "background": {
        "scripts": [
            "browser-polyfill.min.js",
            "common.js",
            "ta_database.js",
            "ta_bg.js",
            "background.js"
        ]
    },
    "options_ui": {
        "browser_style": true,
        "page": "options\/options.html"
    }
}