Cache Bomb
Cache-busts the current page.
Wat is Cache Bomb?
Cache Bomb is een Chrome-extensie ontwikkeld door Nicholas Scheurich, en de belangrijkste functie is "Cache-busts the current page.".
Download het CRX-bestand van de extensie Cache Bomb
Download Cache Bomb-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
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/).
Basisinformatie over de Extensie
Naam | Cache Bomb |
ID | balfpnjonknhioomnkiebocaalohjkpk |
Officiële URL | https://chromewebstore.google.com/detail/cache-bomb/balfpnjonknhioomnkiebocaalohjkpk |
Beschrijving | Cache-busts the current page. |
Bestandsgrootte | 9.42 KB |
Aantal Installaties | 35 |
Huidige Versie | 1.1 |
Laatst Bijgewerkt | 2016-07-19 |
Publicatiedatum | 2016-07-19 |
Ontwikkelaar | Nicholas Scheurich |
Betalingswijze | free |
Extensiewebsite | https://github.com/ngscheurich/cache_bomb |
Help Pagina-URL | https://github.com/ngscheurich/cache_bomb/issues |
Ondersteunde Talen | 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" ] } |