Textarea Cache

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

Textarea Cache là gì?

Textarea Cache là một tiện ích mở rộng Chrome được phát triển bởi https://blog.wildsky.cc, và tính năng chính của nó là "Allows to save automatically the content in a text input field.".

Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng

screenshot

Tải xuống tệp CRX của tiện ích mở rộng Textarea Cache

Tải xuống các tệp mở rộng Textarea Cache dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.

Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng

                        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.                    

Thông Tin Cơ Bản về Tiện Ích Mở Rộng

Tên Textarea Cache Textarea Cache
ID chpphekfimlabghbdankokcohcmnbmab
URL Chính Thức https://chromewebstore.google.com/detail/textarea-cache/chpphekfimlabghbdankokcohcmnbmab
Mô tả Allows to save automatically the content in a text input field.
Kích Thước Tệp 671 KB
Số Lần Cài Đặt 3,051
Phiên Bản Hiện Tại 4.5.0
Cập Nhật Lần Cuối 2022-07-12
Ngày Phát Hành 2019-04-21
Đánh Giá 4.00/5 Tổng số 14 Đánh Giá
Nhà Phát Triển https://blog.wildsky.cc
Email [email protected]
Loại Thanh Toán free
Trang Web Mở Rộng https://github.com/wildskyf/TextareaCache/
URL Trang Trợ Giúp https://github.com/wildskyf/TextareaCache/issues
URL Trang Chính Sách Bảo Mật https://readmoo.com/terms/privacy
Ngôn Ngữ Được Hỗ Trợ 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"
    }
}