Cache Bomb
Cache-busts the current page.
¿Qué es Cache Bomb?
Cache Bomb es una extensión de Chrome desarrollada por Nicholas Scheurich, y su función principal es "Cache-busts the current page.".
Descargar Archivo CRX de la Extensión Cache Bomb
Descarga archivos de extensión Cache Bomb en formato crx, instala manualmente las extensiones de Chrome en el navegador o comparte los archivos crx con amigos para instalar fácilmente las extensiones de Chrome.
Instrucciones de Uso de la Extensión
Appends the current datetime to URL as a valueless request parameter. Currently overwrites existing URL params.
Request features and report bugs at https://github.com/ngscheurich/cache_bomb.
Logo icons are from the excellent Nucleo set (https://nucleoapp.com/). Información Básica de la Extensión
| Nombre | |
| ID | balfpnjonknhioomnkiebocaalohjkpk |
| URL Oficial | https://chromewebstore.google.com/detail/cache-bomb/balfpnjonknhioomnkiebocaalohjkpk |
| Descripción | Cache-busts the current page. |
| Tamaño del Archivo | 9.42 KB |
| Cantidad de Instalaciones | 35 |
| Versión Actual | 1.1 |
| Última Actualización | 2016-07-19 |
| Fecha de Publicación | 2016-07-19 |
| Desarrollador | Nicholas Scheurich |
| Tipo de Pago | free |
| Sitio Web de la Extensión | https://github.com/ngscheurich/cache_bomb |
| URL de la Página de Ayuda | https://github.com/ngscheurich/cache_bomb/issues |
| Idiomas Soportados | en-US |
| manifest.json | |
{
"update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
"manifest_version": 2,
"name": "Cache Bomb",
"version": "1.1",
"description": "Cache-busts the current page.",
"icons": {
"16": "icon16.png",
"48": "icon48.png",
"64": "icon64.png",
"128": "icon128.png"
},
"browser_action": {
"default_icon": "icon48.png",
"default_title": "Cache-bust the current page."
},
"background": {
"scripts": [
"background.js"
],
"persistent": false
},
"permissions": [
"activeTab"
]
} | |