Cachebuster

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

什麼是Cachebuster?

Cachebuster是由Yasa Akbulut開發的Chrome擴展程式,該擴展的主要功能是“The awesome cache-busting extension. Perfect for bypassing proxy and load balancer caches for development and testing purposes.”。

擴展截圖

screenshot

下載Cachebuster擴展crx文件

下載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
官方網址 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"
    }
}