Textarea Cache

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

What is Textarea Cache?

Textarea Cache is a Chrome extension developed by https://blog.wildsky.cc, and its main feature is "Allows to save automatically the content in a text input field.".

Extension Screenshots

screenshot

Download Textarea Cache Extension CRX File

Download Textarea Cache extension files in crx format, manually install Chrome extensions in the browser, or share the crx files with friends to easily install Chrome extensions.

Extension Usage Instructions

                        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.                    

Extension Basic Information

Name Textarea Cache Textarea Cache
ID chpphekfimlabghbdankokcohcmnbmab
Official URL https://chromewebstore.google.com/detail/textarea-cache/chpphekfimlabghbdankokcohcmnbmab
Description Allows to save automatically the content in a text input field.
File Size 671 KB
Installation Count 3,051
Current Version 4.5.0
Last Updated 2022-07-12
Publish Date 2019-04-21
Rating 4.00/5 Total 14 Ratings
Developer https://blog.wildsky.cc
Email [email protected]
Payment Type free
Extension Website https://github.com/wildskyf/TextareaCache/
Help Page URL https://github.com/wildskyf/TextareaCache/issues
Privacy Policy Page URL https://readmoo.com/terms/privacy
Supported Languages 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"
    }
}