Cachebuster

The awesome cache-busting extension. Perfect for bypassing proxy and load balancer caches for development and testing purposes.

Cachebusterคืออะไร?

Cachebuster เป็นส่วนขยายของ Chrome ที่พัฒนาโดย Yasa Akbulut และคุณลักษณะหลักของมันคือ "The awesome cache-busting extension. Perfect for bypassing proxy and load balancer caches for development and testing purposes."

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

screenshot

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

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

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

                        Cachebuster adds a query parameter to all HTTP requests made by your browser to bypass load balancer/proxy caches.

For example, an HTTP request to URL http://yasa.gs/ will actually be made to the URL http://yasa.gs/?cachebusterTimestamp=1383291810660.

Especially useful in scenarios where manual QA for web apps is performed in a corporate environment, which usually feature heavy caching via load balancers or proxies. Without this extension, testers might not see the latest changes.                    

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

ชื่อ Cachebuster Cachebuster
ID lmdhgpbbmafnmlkpeaafegpohagkoikd
URL อย่างเป็นทางการ https://chromewebstore.google.com/detail/cachebuster/lmdhgpbbmafnmlkpeaafegpohagkoikd
คำอธิบาย The awesome cache-busting extension. Perfect for bypassing proxy and load balancer caches for development and testing purposes.
ขนาดไฟล์ 71.85 KB
จำนวนการติดตั้ง 831
เวอร์ชันปัจจุบัน 0.0.5
อัปเดตครั้งล่าสุด 2022-06-24
วันที่เผยแพร่ 2013-12-30
คะแนน 5.00/5 รวมทั้งหมด 6 คะแนน
ผู้พัฒนา Yasa Akbulut
อีเมล [email protected]
ประเภทการชำระเงิน free
เว็บไซต์ส่วนขยาย http://yasakbulut.github.io/cachebuster/
ภาษาที่รองรับ en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Cachebuster",
    "version": "0.0.5",
    "manifest_version": 2,
    "description": "The awesome cache-busting extension. Perfect for bypassing proxy and load balancer caches for development and testing purposes.",
    "homepage_url": "http:\/\/yasakbulut.github.io\/cachebuster",
    "icons": {
        "16": "icons\/Network16.png",
        "48": "icons\/Network48.png",
        "128": "icons\/Network128.png"
    },
    "background": {
        "scripts": [
            "src\/bg\/background.js"
        ],
        "persistent": true
    },
    "permissions": [
        "http:\/\/*\/*",
        "webRequest",
        "webRequestBlocking"
    ],
    "options_page": "src\/options_custom\/index.html",
    "browser_action": {
        "default_icon": {
            "19": "icons\/Network19.png",
            "38": "icons\/Network38.png"
        },
        "default_title": "Cache Buster"
    }
}