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

下载DeleteCache扩展crx文件

下载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"
    }
}