Cache Bomb
Cache-busts the current page.
Cos'è Cache Bomb?
Cache Bomb è un'estensione di Chrome sviluppata da Nicholas Scheurich, e la sua funzione principale è "Cache-busts the current page.".
Scarica il file CRX dell'estensione Cache Bomb
Scarica i file di estensione Cache Bomb 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
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/). Informazioni di Base sull'Estensione
| Nome | |
| ID | balfpnjonknhioomnkiebocaalohjkpk |
| URL Ufficiale | https://chromewebstore.google.com/detail/cache-bomb/balfpnjonknhioomnkiebocaalohjkpk |
| Descrizione | Cache-busts the current page. |
| Dimensione del File | 9.42 KB |
| Conteggio Installazioni | 35 |
| Versione Corrente | 1.1 |
| Ultimo Aggiornamento | 2016-07-19 |
| Data di Pubblicazione | 2016-07-19 |
| Sviluppatore | Nicholas Scheurich |
| Tipo di Pagamento | free |
| Sito Web dell'Estensione | https://github.com/ngscheurich/cache_bomb |
| URL della Pagina di Aiuto | https://github.com/ngscheurich/cache_bomb/issues |
| Lingue Supportate | 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"
]
} | |