DeleteCache

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

Co to jest DeleteCache?

DeleteCache to rozszerzenie Chrome opracowane przez 이종우, a jego główną funkcją jest „Optimizes user experience by deleting unnecessary caches, cookies, and site data”.

Zrzuty ekranu rozszerzenia

screenshot
screenshot
screenshot

Pobierz plik CRX rozszerzenia DeleteCache

Pobierz pliki rozszerzeń DeleteCache w formacie crx, zainstaluj ręcznie rozszerzenia Chrome w przeglądarce lub udostępnij pliki crx znajomym, aby łatwo zainstalować rozszerzenia Chrome.

Instrukcja Użytkowania Rozszerzenia

                        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.                    

Podstawowe informacje o rozszerzeniu

Nazwa DeleteCache DeleteCache
ID mcfacdlgdhekfeonmihigncncdhofbgk
Oficjalny URL https://chromewebstore.google.com/detail/deletecache/mcfacdlgdhekfeonmihigncncdhofbgk
Opis Optimizes user experience by deleting unnecessary caches, cookies, and site data
Rozmiar pliku 40.67 KB
Liczba instalacji 49
Aktualna Wersja 3.1
Ostatnia Aktualizacja 2021-01-28
Data Publikacji 2020-08-27
Ocena 5.00/5 Łącznie 5 Oceny
Deweloper 이종우
E-mail [email protected]
Typ Płatności free
Strona Rozszerzenia https://chromedeveloper.wixsite.com/deletecache-support
Adres URL Strony Pomocy https://chromedeveloper.wixsite.com/deletecache-support
Obsługiwane Języki 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"
    }
}