Textarea Cache

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

Co je Textarea Cache?

Textarea Cache je rozšíření Chrome vyvinuté https://blog.wildsky.cc, a jeho hlavní funkcí je „Allows to save automatically the content in a text input field.“.

Snímky obrazovky rozšíření

screenshot

Stáhnout soubor CRX rozšíření Textarea Cache

Stáhněte si soubory rozšíření Textarea Cache ve formátu crx, ručně nainstalujte rozšíření Chrome do prohlížeče nebo sdílejte soubory crx s přáteli, abyste jednoduše nainstalovali rozšíření Chrome.

Pokyny pro Použití Rozšíření

                        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.                    

Základní Informace o Rozšíření

Název Textarea Cache Textarea Cache
ID chpphekfimlabghbdankokcohcmnbmab
Oficiální URL https://chromewebstore.google.com/detail/textarea-cache/chpphekfimlabghbdankokcohcmnbmab
Popis Allows to save automatically the content in a text input field.
Velikost souboru 671 KB
Počet instalací 3,051
Aktuální Verze 4.5.0
Poslední Aktualizace 2022-07-12
Datum Vydání 2019-04-21
Hodnocení 4.00/5 Celkem 14 Hodnocení
Vývojář https://blog.wildsky.cc
E-mail [email protected]
Typ Platby free
Webové stránky Rozšíření https://github.com/wildskyf/TextareaCache/
URL Stránky Nápovědy https://github.com/wildskyf/TextareaCache/issues
URL Stránky Zásad Ochrany Soukromí https://readmoo.com/terms/privacy
Podporované Jazyky 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"
    }
}