Cloudflare Purge Client

Delete cache objects from Cloudflare network

Cloudflare Purge Clientคืออะไร?

Cloudflare Purge Client เป็นส่วนขยายของ Chrome ที่พัฒนาโดย Ricky Yu และคุณลักษณะหลักของมันคือ "Delete cache objects from Cloudflare network"

ภาพหน้าจอของส่วนขยาย

screenshot
screenshot
screenshot
screenshot
screenshot

ดาวน์โหลดไฟล์ CRX ของส่วนขยาย Cloudflare Purge Client

ดาวน์โหลดไฟล์ส่วนขยาย Cloudflare Purge Client ในรูปแบบ crx และติดตั้งส่วนขยาย Chrome ด้วยตนเองในเบราว์เซอร์หรือแชร์ไฟล์ crx กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย Chrome อย่างง่ายดาย

คำแนะนำในการใช้ส่วนขยาย

                        Clear cached files to force Cloudflare to fetch a fresh version of those files from your web server. You can purge files selectively or all at once.

Cloudflare Purge Client allows you to purge Individual object(URL), hostname, tag, custom cache key, custom JSON input and everything at once.

You can manage multiple API keys and purge logs are available to check the result of the API call. Right-click to purge is also available for URL and Tag.

API Keys are encrypted and stored in local Chrome storage, it will not be synced throughout Chrome browsers, it will never be exposed to the internet. 

In a few clicks, you will be able to make purge requests to Cloudflare!

Got feedback? email at [email protected]

Cloudflare and the Cloudflare logo are registered trademarks of Cloudflare, Inc. Cloudflare does not endorse, sponsor, or support this extension.                    

ข้อมูลพื้นฐานของส่วนขยาย

ชื่อ Cloudflare Purge Client Cloudflare Purge Client
ID nnliialngkpcpbokfdefifbhbhiaognn
URL อย่างเป็นทางการ https://chrome.google.com/webstore/detail/cloudflare-purge-client/nnliialngkpcpbokfdefifbhbhiaognn
คำอธิบาย Delete cache objects from Cloudflare network
ขนาดไฟล์ 777 KB
จำนวนการติดตั้ง 341
เวอร์ชันปัจจุบัน 1.1.3
อัปเดตครั้งล่าสุด 2019-12-25
วันที่เผยแพร่ 2019-12-25
คะแนน 3.67/5 รวมทั้งหมด 3 คะแนน
ผู้พัฒนา Ricky Yu
อีเมล [email protected]
ประเภทการชำระเงิน free
ภาษาที่รองรับ en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Cloudflare Purge Client",
    "version": "1.1.3",
    "description": "Delete cache objects from Cloudflare network",
    "manifest_version": 2,
    "background": {
        "persistent": false,
        "scripts": [
            "lib\/jquery-3.1.1.min.js",
            "lib\/core.js",
            "lib\/enc-base64.js",
            "lib\/md5.js",
            "lib\/evpkdf.js",
            "lib\/cipher-core.js",
            "lib\/aes.js",
            "js\/global_static.js",
            "js\/notification.js",
            "js\/utils.js",
            "js\/encdec.js",
            "js\/background.js",
            "js\/updatepage.js",
            "js\/apikey.js",
            "js\/purge.js",
            "js\/http.js",
            "js\/page.js",
            "pages\/manage_key.js",
            "pages\/mainpage.js",
            "pages\/purge_result.js",
            "pages\/purge_by_url.js",
            "pages\/purge_cache_key.js",
            "pages\/purge_json_input.js",
            "pages\/purge_by_host.js",
            "pages\/purge_by_tag.js",
            "pages\/purge_all.js",
            "pages\/purge_log.js"
        ]
    },
    "browser_action": {
        "default_icon": "img\/logo.png",
        "default_popup": "popup.html",
        "default_title": "Cloudflare Purge Client"
    },
    "icons": {
        "16": "img\/logo-white.png",
        "48": "img\/logo.png",
        "128": "img\/logo.png"
    },
    "permissions": [
        "tabs",
        "activeTab",
        "storage",
        "contextMenus",
        "notifications",
        "https:\/\/api.cloudflare.com\/*"
    ],
    "web_accessible_resources": [
        "css\/HoldOn.css"
    ]
}