Cachebuster
The awesome cache-busting extension. Perfect for bypassing proxy and load balancer caches for development and testing purposes.
O que é Cachebuster?
Cachebuster é uma extensão do Chrome desenvolvida por Yasa Akbulut, e sua principal característica é "The awesome cache-busting extension. Perfect for bypassing proxy and load balancer caches for development and testing purposes.".
Capturas de Tela da Extensão
Baixar o arquivo CRX da Extensão Cachebuster
Baixe arquivos de extensão Cachebuster no formato crx, instale manualmente as extensões do Chrome no navegador ou compartilhe os arquivos crx com amigos para instalar facilmente as extensões do Chrome.
Instruções de Uso da Extensão
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.
Informações Básicas da Extensão
Nome | Cachebuster |
ID | lmdhgpbbmafnmlkpeaafegpohagkoikd |
URL Oficial | https://chromewebstore.google.com/detail/cachebuster/lmdhgpbbmafnmlkpeaafegpohagkoikd |
Descrição | The awesome cache-busting extension. Perfect for bypassing proxy and load balancer caches for development and testing purposes. |
Tamanho do Arquivo | 71.85 KB |
Contagem de Instalações | 831 |
Versão Atual | 0.0.5 |
Última Atualização | 2022-06-24 |
Data de Publicação | 2013-12-30 |
Classificação | 5.00/5 Total de 6 Avaliações |
Desenvolvedor | Yasa Akbulut |
[email protected] | |
Tipo de Pagamento | free |
Site da Extensão | http://yasakbulut.github.io/cachebuster/ |
Idiomas Suportados | 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" } } |