Textarea Cache

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

Qu'est-ce que Textarea Cache ?

Textarea Cache est une extension Chrome développée par https://blog.wildsky.cc, et sa fonction principale est "Allows to save automatically the content in a text input field.".

Captures d'Écran de l'Extension

screenshot

Télécharger le fichier CRX de l'extension Textarea Cache

Téléchargez les fichiers d'extension Textarea Cache au format crx, installez manuellement les extensions Chrome dans le navigateur ou partagez les fichiers crx avec des amis pour installer facilement les extensions Chrome.

Instructions d'Utilisation de l'Extension

                        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.                    

Informations de Base sur l'Extension

Nom Textarea Cache Textarea Cache
ID chpphekfimlabghbdankokcohcmnbmab
URL Officiel https://chromewebstore.google.com/detail/textarea-cache/chpphekfimlabghbdankokcohcmnbmab
Description Allows to save automatically the content in a text input field.
Taille du Fichier 671 KB
Nombre d'Installations 3,051
Version Actuelle 4.5.0
Dernière Mise à Jour 2022-07-12
Date de Publication 2019-04-21
Évaluation 4.00/5 Total 14 Évaluations
Développeur https://blog.wildsky.cc
Email [email protected]
Type de Paiement free
Site Web de l'Extension https://github.com/wildskyf/TextareaCache/
URL de la Page d'Aide https://github.com/wildskyf/TextareaCache/issues
URL de la Page de Politique de Confidentialité https://readmoo.com/terms/privacy
Langues Prises en Charge 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"
    }
}