Textarea Cache

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

O que é Textarea Cache?

Textarea Cache é uma extensão do Chrome desenvolvida por https://blog.wildsky.cc, e sua principal característica é "Allows to save automatically the content in a text input field.".

Capturas de Tela da Extensão

screenshot

Baixar o arquivo CRX da Extensão Textarea Cache

Baixe arquivos de extensão Textarea Cache no formato crx, instale manualmente as extensões do Chrome no navegador ou compartilhe os arquivos crx com amigos para instalar facilmente as extensões do Chrome.

Instruções de Uso da Extensão

                        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.                    

Informações Básicas da Extensão

Nome Textarea Cache Textarea Cache
ID chpphekfimlabghbdankokcohcmnbmab
URL Oficial https://chromewebstore.google.com/detail/textarea-cache/chpphekfimlabghbdankokcohcmnbmab
Descrição Allows to save automatically the content in a text input field.
Tamanho do Arquivo 671 KB
Contagem de Instalações 3,051
Versão Atual 4.5.0
Última Atualização 2022-07-12
Data de Publicação 2019-04-21
Classificação 4.00/5 Total de 14 Avaliações
Desenvolvedor https://blog.wildsky.cc
Email [email protected]
Tipo de Pagamento free
Site da Extensão https://github.com/wildskyf/TextareaCache/
URL da Página de Ajuda https://github.com/wildskyf/TextareaCache/issues
URL da Página de Política de Privacidade https://readmoo.com/terms/privacy
Idiomas Suportados 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"
    }
}