Textarea Cache

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

Wat is Textarea Cache?

Textarea Cache is een Chrome-extensie ontwikkeld door https://blog.wildsky.cc, en de belangrijkste functie is "Allows to save automatically the content in a text input field.".

Extensie Screenshots

screenshot

Download het CRX-bestand van de extensie Textarea Cache

Download Textarea Cache-extensiebestanden in crx-indeling, installeer Chrome-extensies handmatig in de browser of deel de crx-bestanden met vrienden om Chrome-extensies eenvoudig te installeren.

Instructies voor het Gebruik van de Extensie

                        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.                    

Basisinformatie over de Extensie

Naam Textarea Cache Textarea Cache
ID chpphekfimlabghbdankokcohcmnbmab
Officiële URL https://chromewebstore.google.com/detail/textarea-cache/chpphekfimlabghbdankokcohcmnbmab
Beschrijving Allows to save automatically the content in a text input field.
Bestandsgrootte 671 KB
Aantal Installaties 3,051
Huidige Versie 4.5.0
Laatst Bijgewerkt 2022-07-12
Publicatiedatum 2019-04-21
Beoordeling 4.00/5 Totaal 14 Beoordelingen
Ontwikkelaar https://blog.wildsky.cc
E-mail [email protected]
Betalingswijze free
Extensiewebsite https://github.com/wildskyf/TextareaCache/
Help Pagina-URL https://github.com/wildskyf/TextareaCache/issues
URL van de Privacybeleid Pagina https://readmoo.com/terms/privacy
Ondersteunde Talen 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"
    }
}