Textarea Cache

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

¿Qué es Textarea Cache?

Textarea Cache es una extensión de Chrome desarrollada por https://blog.wildsky.cc, y su función principal es "Allows to save automatically the content in a text input field.".

Capturas de Pantalla de la Extensión

screenshot

Descargar Archivo CRX de la Extensión Textarea Cache

Descarga archivos de extensión Textarea Cache en formato crx, instala manualmente las extensiones de Chrome en el navegador o comparte los archivos crx con amigos para instalar fácilmente las extensiones de Chrome.

Instrucciones de Uso de la Extensión

                        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.                    

Información Básica de la Extensión

Nombre Textarea Cache Textarea Cache
ID chpphekfimlabghbdankokcohcmnbmab
URL Oficial https://chromewebstore.google.com/detail/textarea-cache/chpphekfimlabghbdankokcohcmnbmab
Descripción Allows to save automatically the content in a text input field.
Tamaño del Archivo 671 KB
Cantidad de Instalaciones 3,051
Versión Actual 4.5.0
Última Actualización 2022-07-12
Fecha de Publicación 2019-04-21
Calificación 4.00/5 Total de 14 Calificaciones
Desarrollador https://blog.wildsky.cc
Correo electrónico [email protected]
Tipo de Pago free
Sitio Web de la Extensión https://github.com/wildskyf/TextareaCache/
URL de la Página de Ayuda https://github.com/wildskyf/TextareaCache/issues
URL de la Página de Política de Privacidad https://readmoo.com/terms/privacy
Idiomas Soportados 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"
    }
}