DeleteCache

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

DeleteCache là gì?

DeleteCache là một tiện ích mở rộng Chrome được phát triển bởi 이종우, và tính năng chính của nó là "Optimizes user experience by deleting unnecessary caches, cookies, and site data".

Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng

screenshot
screenshot
screenshot

Tải xuống tệp CRX của tiện ích mở rộng DeleteCache

Tải xuống các tệp mở rộng DeleteCache dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.

Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng

                        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.                    

Thông Tin Cơ Bản về Tiện Ích Mở Rộng

Tên DeleteCache DeleteCache
ID mcfacdlgdhekfeonmihigncncdhofbgk
URL Chính Thức https://chromewebstore.google.com/detail/deletecache/mcfacdlgdhekfeonmihigncncdhofbgk
Mô tả Optimizes user experience by deleting unnecessary caches, cookies, and site data
Kích Thước Tệp 40.67 KB
Số Lần Cài Đặt 49
Phiên Bản Hiện Tại 3.1
Cập Nhật Lần Cuối 2021-01-28
Ngày Phát Hành 2020-08-27
Đánh Giá 5.00/5 Tổng số 5 Đánh Giá
Nhà Phát Triển 이종우
Email [email protected]
Loại Thanh Toán free
Trang Web Mở Rộng https://chromedeveloper.wixsite.com/deletecache-support
URL Trang Trợ Giúp https://chromedeveloper.wixsite.com/deletecache-support
Ngôn Ngữ Được Hỗ Trợ 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"
    }
}