Textarea Cache

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

Что такое Textarea Cache?

Textarea Cache - это расширение Chrome, разработанное https://blog.wildsky.cc, и его основная функция - "Allows to save automatically the content in a text input field.".

Снимки экрана расширения

screenshot

Скачать файл CRX расширения Textarea Cache

Скачайте файлы расширений Textarea Cache в формате crx, установите расширения Chrome вручную в браузере или поделитесь файлами crx с друзьями, чтобы легко установить расширения Chrome.

Инструкции по использованию расширения

                        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.                    

Основная информация о расширении

Название Textarea Cache Textarea Cache
ID chpphekfimlabghbdankokcohcmnbmab
Официальный URL https://chromewebstore.google.com/detail/textarea-cache/chpphekfimlabghbdankokcohcmnbmab
Описание Allows to save automatically the content in a text input field.
Размер файла 671 KB
Количество установок 3,051
Текущая Версия 4.5.0
Последнее Обновление 2022-07-12
Дата публикации 2019-04-21
Рейтинг 4.00/5 Всего 14 оценок
Разработчик https://blog.wildsky.cc
Электронная почта [email protected]
Тип оплаты free
Официальный сайт расширения https://github.com/wildskyf/TextareaCache/
URL страницы помощи https://github.com/wildskyf/TextareaCache/issues
URL страницы политики конфиденциальности https://readmoo.com/terms/privacy
Поддерживаемые языки 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"
    }
}