DeleteCache

Optimizes user experience by deleting unnecessary caches, cookies, and site data

ما هو DeleteCache؟

DeleteCache هو إضافة Chrome تم تطويرها بواسطة 이종우، والميزة الرئيسية لها هي "Optimizes user experience by deleting unnecessary caches, cookies, and site data".

لقطات شاشة التمديد

screenshot
screenshot
screenshot

تحميل ملف CRX للإضافة DeleteCache

قم بتنزيل ملفات الامتداد DeleteCache بتنسيق crx ، وقم بتثبيت الامتدادات يدويًا في متصفح Chrome ، أو شارك ملفات crx مع الأصدقاء لتثبيت الامتدادات بسهولة.

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

                        Using DeleteCache, you can easily clear browsing history, cache, and other unneccessary information that only take up your space.

This extension is also available in the NAVER WHALE STORE.                    

معلومات أساسية عن التمديد

الاسم DeleteCache DeleteCache
ID mcfacdlgdhekfeonmihigncncdhofbgk
عنوان URL الرسمي https://chromewebstore.google.com/detail/deletecache/mcfacdlgdhekfeonmihigncncdhofbgk
الوصف Optimizes user experience by deleting unnecessary caches, cookies, and site data
حجم الملف 40.67 KB
عدد التثبيتات 49
النسخة الحالية 3.1
آخر تحديث 2021-01-28
تاريخ النشر 2020-08-27
تقييم 5.00/5 مجموع تقييمات 5
المطور 이종우
البريد الإلكتروني [email protected]
نوع الدفع free
موقع الإضافة https://chromedeveloper.wixsite.com/deletecache-support
عنوان صفحة المساعدة https://chromedeveloper.wixsite.com/deletecache-support
اللغات المدعومة en,ko
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "DeleteCache",
    "short_name": "CachDel",
    "version": "3.1",
    "description": "__MSG_appDesc__",
    "default_locale": "ko",
    "author": "Jongwoo Lee",
    "offline_enabled": true,
    "minimum_chrome_version": "72",
    "homepage_url": "https:\/\/chromedeveloper.wixsite.com\/deletecache-support",
    "permissions": [
        "browsingData"
    ],
    "background": {
        "scripts": [
            "js\/background.js"
        ],
        "persistent": true
    },
    "browser_action": {
        "default_icon": "images\/icon_toolbar.png",
        "default_popup": "html\/popup.html"
    },
    "commands": {
        "_execute_browser_action": {
            "suggested_key": {
                "default": "Ctrl+Delete",
                "mac": "Command+Shift+D"
            },
            "description": "Start DeleteCache"
        }
    },
    "icons": {
        "16": "images\/icon.png",
        "32": "images\/clean_32.png",
        "128": "images\/clean_128.png"
    }
}