Textarea Cache

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

Was ist Textarea Cache?

Textarea Cache ist eine Chrome-Erweiterung, die von https://blog.wildsky.cc entwickelt wurde, und ihr Hauptmerkmal ist "Allows to save automatically the content in a text input field.".

Erweiterungsscreenshots

screenshot

Textarea Cache-Erweiterungs-CRX-Datei herunterladen

Laden Sie Textarea Cache-Erweiterungsdateien im crx-Format herunter, installieren Sie Chrome-Erweiterungen manuell im Browser oder teilen Sie die crx-Dateien mit Freunden, um Chrome-Erweiterungen einfach zu installieren.

Anleitung zur Verwendung der Erweiterung

                        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.                    

Grundlegende Informationen zur Erweiterung

Name Textarea Cache Textarea Cache
ID chpphekfimlabghbdankokcohcmnbmab
Offizielle URL https://chromewebstore.google.com/detail/textarea-cache/chpphekfimlabghbdankokcohcmnbmab
Beschreibung Allows to save automatically the content in a text input field.
Dateigröße 671 KB
Installationsanzahl 3,051
Aktuelle Version 4.5.0
Letztes Update 2022-07-12
Veröffentlichungsdatum 2019-04-21
Bewertung 4.00/5 Insgesamt 14 Bewertungen
Entwickler https://blog.wildsky.cc
E-Mail [email protected]
Zahlungsart free
Erweiterungswebsite https://github.com/wildskyf/TextareaCache/
Hilfeseite URL https://github.com/wildskyf/TextareaCache/issues
URL der Datenschutzrichtlinien-Seite https://readmoo.com/terms/privacy
Unterstützte Sprachen 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"
    }
}