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 파일 다운로드

크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 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
도움말 페이지 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"
    }
}