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 مع الأصدقاء لتثبيت الامتدادات بسهولة.

تعليمات استخدام التمديد

                        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/
عنوان صفحة المساعدة https://github.com/wildskyf/TextareaCache/issues
عنوان صفحة سياسة الخصوصية 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"
    }
}