Cache Bomb

Cache-busts the current page.

Vad är Cache Bomb?

Cache Bomb är en Chrome-tillägg utvecklad av Nicholas Scheurich, och dess huvudfunktion är "Cache-busts the current page.".

Ladda ner Cache Bomb-förlängningens CRX-fil

Ladda ner Cache Bomb-filändelser i crx-format, installera Chrome-tillägg manuellt i webbläsaren eller dela crx-filerna med vänner för att enkelt installera Chrome-tillägg.

Användarmanual för Tillägg

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

Grundläggande Information om Tillägg

Namn Cache Bomb Cache Bomb
ID balfpnjonknhioomnkiebocaalohjkpk
Officiell webbadress https://chromewebstore.google.com/detail/cache-bomb/balfpnjonknhioomnkiebocaalohjkpk
Beskrivning Cache-busts the current page.
Filstorlek 9.42 KB
Antal Installationer 35
Aktuell Version 1.1
Senast Uppdaterad 2016-07-19
Publiceringsdatum 2016-07-19
Utvecklare Nicholas Scheurich
Betalningssätt free
Tilläggswebbplats https://github.com/ngscheurich/cache_bomb
Hjälpsida URL https://github.com/ngscheurich/cache_bomb/issues
Stödda Språk 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"
    ]
}