Cache Bomb

Cache-busts the current page.

What is Cache Bomb?

Cache Bomb is a Chrome extension developed by Nicholas Scheurich, and its main feature is "Cache-busts the current page.".

Download Cache Bomb Extension CRX File

Download Cache Bomb extension files in crx format, manually install Chrome extensions in the browser, or share the crx files with friends to easily install Chrome extensions.

Extension Usage Instructions

                        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/).                    

Extension Basic Information

Name Cache Bomb Cache Bomb
ID balfpnjonknhioomnkiebocaalohjkpk
Official URL https://chromewebstore.google.com/detail/cache-bomb/balfpnjonknhioomnkiebocaalohjkpk
Description Cache-busts the current page.
File Size 9.42 KB
Installation Count 35
Current Version 1.1
Last Updated 2016-07-19
Publish Date 2016-07-19
Developer Nicholas Scheurich
Payment Type free
Extension Website https://github.com/ngscheurich/cache_bomb
Help Page URL https://github.com/ngscheurich/cache_bomb/issues
Supported Languages 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"
    ]
}