Textarea Cache

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

Cos'è Textarea Cache?

Textarea Cache è un'estensione di Chrome sviluppata da https://blog.wildsky.cc, e la sua funzione principale è "Allows to save automatically the content in a text input field.".

Screenshot dell'Estensione

screenshot

Scarica il file CRX dell'estensione Textarea Cache

Scarica i file di estensione Textarea Cache in formato crx, installa manualmente le estensioni di Chrome nel browser o condividi i file crx con gli amici per installare facilmente le estensioni di Chrome.

Istruzioni per l'Uso dell'Estensione

                        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.                    

Informazioni di Base sull'Estensione

Nome Textarea Cache Textarea Cache
ID chpphekfimlabghbdankokcohcmnbmab
URL Ufficiale https://chromewebstore.google.com/detail/textarea-cache/chpphekfimlabghbdankokcohcmnbmab
Descrizione Allows to save automatically the content in a text input field.
Dimensione del File 671 KB
Conteggio Installazioni 3,051
Versione Corrente 4.5.0
Ultimo Aggiornamento 2022-07-12
Data di Pubblicazione 2019-04-21
Valutazione 4.00/5 Totale 14 Valutazioni
Sviluppatore https://blog.wildsky.cc
Email [email protected]
Tipo di Pagamento free
Sito Web dell'Estensione https://github.com/wildskyf/TextareaCache/
URL della Pagina di Aiuto https://github.com/wildskyf/TextareaCache/issues
URL della Pagina della Politica sulla Privacy https://readmoo.com/terms/privacy
Lingue Supportate 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"
    }
}