Cachebuster

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

Wat is Cachebuster?

Cachebuster is een Chrome-extensie ontwikkeld door Yasa Akbulut, en de belangrijkste functie is "The awesome cache-busting extension. Perfect for bypassing proxy and load balancer caches for development and testing purposes.".

Extensie Screenshots

screenshot

Download het CRX-bestand van de extensie Cachebuster

Download Cachebuster-extensiebestanden in crx-indeling, installeer Chrome-extensies handmatig in de browser of deel de crx-bestanden met vrienden om Chrome-extensies eenvoudig te installeren.

Instructies voor het Gebruik van de Extensie

                        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.                    

Basisinformatie over de Extensie

Naam Cachebuster Cachebuster
ID lmdhgpbbmafnmlkpeaafegpohagkoikd
Officiële URL https://chromewebstore.google.com/detail/cachebuster/lmdhgpbbmafnmlkpeaafegpohagkoikd
Beschrijving The awesome cache-busting extension. Perfect for bypassing proxy and load balancer caches for development and testing purposes.
Bestandsgrootte 71.85 KB
Aantal Installaties 831
Huidige Versie 0.0.5
Laatst Bijgewerkt 2022-06-24
Publicatiedatum 2013-12-30
Beoordeling 5.00/5 Totaal 6 Beoordelingen
Ontwikkelaar Yasa Akbulut
E-mail [email protected]
Betalingswijze free
Extensiewebsite http://yasakbulut.github.io/cachebuster/
Ondersteunde Talen 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"
    }
}