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
电子邮箱 [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"
    }
}