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
官方網址 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"
    }
}