Textarea Cache

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

Co to jest Textarea Cache?

Textarea Cache to rozszerzenie Chrome opracowane przez https://blog.wildsky.cc, a jego główną funkcją jest „Allows to save automatically the content in a text input field.”.

Zrzuty ekranu rozszerzenia

screenshot

Pobierz plik CRX rozszerzenia Textarea Cache

Pobierz pliki rozszerzeń Textarea Cache w formacie crx, zainstaluj ręcznie rozszerzenia Chrome w przeglądarce lub udostępnij pliki crx znajomym, aby łatwo zainstalować rozszerzenia Chrome.

Instrukcja Użytkowania Rozszerzenia

                        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.                    

Podstawowe informacje o rozszerzeniu

Nazwa Textarea Cache Textarea Cache
ID chpphekfimlabghbdankokcohcmnbmab
Oficjalny URL https://chromewebstore.google.com/detail/textarea-cache/chpphekfimlabghbdankokcohcmnbmab
Opis Allows to save automatically the content in a text input field.
Rozmiar pliku 671 KB
Liczba instalacji 3,051
Aktualna Wersja 4.5.0
Ostatnia Aktualizacja 2022-07-12
Data Publikacji 2019-04-21
Ocena 4.00/5 Łącznie 14 Oceny
Deweloper https://blog.wildsky.cc
E-mail [email protected]
Typ Płatności free
Strona Rozszerzenia https://github.com/wildskyf/TextareaCache/
Adres URL Strony Pomocy https://github.com/wildskyf/TextareaCache/issues
Adres URL Strony Polityki Prywatności https://readmoo.com/terms/privacy
Obsługiwane Języki 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"
    }
}