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 파일 다운로드

크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.

확장 프로그램 사용 설명서

                        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"
    }
}