Cache Bomb

Cache-busts the current page.

Co to jest Cache Bomb?

Cache Bomb to rozszerzenie Chrome opracowane przez Nicholas Scheurich, a jego główną funkcją jest „Cache-busts the current page.”.

Pobierz plik CRX rozszerzenia Cache Bomb

Pobierz pliki rozszerzeń Cache Bomb w formacie crx, zainstaluj ręcznie rozszerzenia Chrome w przeglądarce lub udostępnij pliki crx znajomym, aby łatwo zainstalować rozszerzenia Chrome.

Instrukcja Użytkowania Rozszerzenia

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

Podstawowe informacje o rozszerzeniu

Nazwa Cache Bomb Cache Bomb
ID balfpnjonknhioomnkiebocaalohjkpk
Oficjalny URL https://chromewebstore.google.com/detail/cache-bomb/balfpnjonknhioomnkiebocaalohjkpk
Opis Cache-busts the current page.
Rozmiar pliku 9.42 KB
Liczba instalacji 35
Aktualna Wersja 1.1
Ostatnia Aktualizacja 2016-07-19
Data Publikacji 2016-07-19
Deweloper Nicholas Scheurich
Typ Płatności free
Strona Rozszerzenia https://github.com/ngscheurich/cache_bomb
Adres URL Strony Pomocy https://github.com/ngscheurich/cache_bomb/issues
Obsługiwane Języki 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"
    ]
}