Clear Cache Shortcut

Quickly clear all your browser cache with a single click.

Clear Cache Shortcut란 무엇입니까?

Clear Cache Shortcut은(는) Paul Yuan에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Quickly clear all your browser cache with a single click."입니다.

확장 프로그램 스크린샷

screenshot
screenshot
screenshot

Clear Cache Shortcut 확장 프로그램 CRX 파일 다운로드

크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.

확장 프로그램 사용 설명서

                        This is a simple extension that allows you to clear your cache with a single click of a button. You can either click the icon, or if you prefer, type in the browser address bar, "cache" => [hit the tab key] => "c" => [hit the enter key] to clear your cache. This extension uses the BrowsingData API which is supported by chrome versions 19+.                    

확장 프로그램 기본 정보

이름 Clear Cache Shortcut Clear Cache Shortcut
ID jnajhcakejgchhbjlchkfmdidgjefleg
공식 URL https://chromewebstore.google.com/detail/clear-cache-shortcut/jnajhcakejgchhbjlchkfmdidgjefleg
설명 Quickly clear all your browser cache with a single click.
파일 크기 95.9 KB
설치 횟수 144,994
현재 버전 1.32
최근 업데이트 2021-04-09
출시 날짜 2013-01-20
평점 4.39/5 총 97 개의 평점
개발자 Paul Yuan
이메일 [email protected]
결제 유형 free
확장 프로그램 웹 사이트 https://twitter.com/pyuan
지원되는 언어 en
manifest.json
{
    "update_url": "http:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Clear Cache Shortcut",
    "version": "1.32",
    "icons": {
        "16": "assets\/icon16.png",
        "48": "assets\/icon48.png",
        "128": "assets\/icon128.png"
    },
    "description": "Quickly clear all your browser cache with a single click.",
    "content_security_policy": "script-src 'self' https:\/\/ssl.google-analytics.com; object-src 'self'",
    "browser_action": {
        "default_icon": "assets\/icon_done.png",
        "default_title": "Clear All Cache",
        "default_popup": "info.html"
    },
    "omnibox": {
        "keyword": "cache"
    },
    "background": {
        "scripts": [
            "assets\/jquery-1.9.0.min.js",
            "assets\/functions.js",
            "assets\/background.js"
        ]
    },
    "permissions": [
        "browsingData"
    ]
}