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 กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย Chrome อย่างง่ายดาย

คำแนะนำในการใช้ส่วนขยาย

                        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
URL หน้าช่วยเหลือ 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"
    }
}