DeleteCache

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

DeleteCache क्या है?

DeleteCache 이종우 द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Optimizes user experience by deleting unnecessary caches, cookies, and site data"।

एक्सटेंशन स्क्रीनशॉट्स

screenshot
screenshot
screenshot

एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें

crx प्रारूप में DeleteCache एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ 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"
    }
}