Cachebuster
The awesome cache-busting extension. Perfect for bypassing proxy and load balancer caches for development and testing purposes.
Cos'è Cachebuster?
Cachebuster è un'estensione di Chrome sviluppata da Yasa Akbulut, e la sua funzione principale è "The awesome cache-busting extension. Perfect for bypassing proxy and load balancer caches for development and testing purposes.".
Screenshot dell'Estensione
Scarica il file CRX dell'estensione Cachebuster
Scarica i file di estensione Cachebuster in formato crx, installa manualmente le estensioni di Chrome nel browser o condividi i file crx con gli amici per installare facilmente le estensioni di Chrome.
Istruzioni per l'Uso dell'Estensione
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. Informazioni di Base sull'Estensione
| Nome | |
| ID | lmdhgpbbmafnmlkpeaafegpohagkoikd |
| URL Ufficiale | https://chromewebstore.google.com/detail/cachebuster/lmdhgpbbmafnmlkpeaafegpohagkoikd |
| Descrizione | The awesome cache-busting extension. Perfect for bypassing proxy and load balancer caches for development and testing purposes. |
| Dimensione del File | 71.85 KB |
| Conteggio Installazioni | 831 |
| Versione Corrente | 0.0.5 |
| Ultimo Aggiornamento | 2022-06-24 |
| Data di Pubblicazione | 2013-12-30 |
| Valutazione | 5.00/5 Totale 6 Valutazioni |
| Sviluppatore | Yasa Akbulut |
| [email protected] | |
| Tipo di Pagamento | free |
| Sito Web dell'Estensione | http://yasakbulut.github.io/cachebuster/ |
| Lingue Supportate | 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"
}
} | |