Cache Bomb
Cache-busts the current page.
Was ist Cache Bomb?
Cache Bomb ist eine Chrome-Erweiterung, die von Nicholas Scheurich entwickelt wurde, und ihr Hauptmerkmal ist "Cache-busts the current page.".
Cache Bomb-Erweiterungs-CRX-Datei herunterladen
Laden Sie Cache Bomb-Erweiterungsdateien im crx-Format herunter, installieren Sie Chrome-Erweiterungen manuell im Browser oder teilen Sie die crx-Dateien mit Freunden, um Chrome-Erweiterungen einfach zu installieren.
Anleitung zur Verwendung der Erweiterung
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/). Grundlegende Informationen zur Erweiterung
| Name | |
| ID | balfpnjonknhioomnkiebocaalohjkpk |
| Offizielle URL | https://chromewebstore.google.com/detail/cache-bomb/balfpnjonknhioomnkiebocaalohjkpk |
| Beschreibung | Cache-busts the current page. |
| Dateigröße | 9.42 KB |
| Installationsanzahl | 35 |
| Aktuelle Version | 1.1 |
| Letztes Update | 2016-07-19 |
| Veröffentlichungsdatum | 2016-07-19 |
| Entwickler | Nicholas Scheurich |
| Zahlungsart | free |
| Erweiterungswebsite | https://github.com/ngscheurich/cache_bomb |
| Hilfeseite URL | https://github.com/ngscheurich/cache_bomb/issues |
| Unterstützte Sprachen | 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"
]
} | |