Cache Bomb

Cache-busts the current page.

Qu'est-ce que Cache Bomb ?

Cache Bomb est une extension Chrome développée par Nicholas Scheurich, et sa fonction principale est "Cache-busts the current page.".

Télécharger le fichier CRX de l'extension Cache Bomb

Téléchargez les fichiers d'extension Cache Bomb au format crx, installez manuellement les extensions Chrome dans le navigateur ou partagez les fichiers crx avec des amis pour installer facilement les extensions Chrome.

Instructions d'Utilisation de l'Extension

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

Informations de Base sur l'Extension

Nom Cache Bomb Cache Bomb
ID balfpnjonknhioomnkiebocaalohjkpk
URL Officiel https://chromewebstore.google.com/detail/cache-bomb/balfpnjonknhioomnkiebocaalohjkpk
Description Cache-busts the current page.
Taille du Fichier 9.42 KB
Nombre d'Installations 35
Version Actuelle 1.1
Dernière Mise à Jour 2016-07-19
Date de Publication 2016-07-19
Développeur Nicholas Scheurich
Type de Paiement free
Site Web de l'Extension https://github.com/ngscheurich/cache_bomb
URL de la Page d'Aide https://github.com/ngscheurich/cache_bomb/issues
Langues Prises en Charge 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"
    ]
}