Reload CSS

A developer tool that adds a button to reload only css stylesheets.

Co to jest Reload CSS?

Reload CSS to rozszerzenie Chrome opracowane przez https://richard.parnaby-king.co.uk, a jego główną funkcją jest „A developer tool that adds a button to reload only css stylesheets.”.

Zrzuty ekranu rozszerzenia

screenshot
screenshot

Pobierz plik CRX rozszerzenia Reload CSS

Pobierz pliki rozszerzeń Reload CSS 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

                        A developer tool that adds a button to reload only css stylesheets. It does this by appending a timestamp to the css file path, e.g. `/path/to/file.css` into `/path/to/file.css?7123654789`                    

Podstawowe informacje o rozszerzeniu

Nazwa Reload CSS Reload CSS
ID ojbbeapndipcgcjgmlelgbgmmalhjkef
Oficjalny URL https://chromewebstore.google.com/detail/reload-css/ojbbeapndipcgcjgmlelgbgmmalhjkef
Opis A developer tool that adds a button to reload only css stylesheets.
Rozmiar pliku 106 KB
Liczba instalacji 97
Aktualna Wersja 1
Ostatnia Aktualizacja 2016-03-10
Data Publikacji 2016-03-10
Ocena 4.00/5 Łącznie 1 Oceny
Deweloper https://richard.parnaby-king.co.uk
Typ Płatności free
Strona Rozszerzenia https://github.com/richard-parnaby-king/Reload-CSS
Obsługiwane Języki en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Reload CSS",
    "short_name": "Reload CSS",
    "description": "A developer tool that adds a button to reload only css stylesheets.",
    "version": "1",
    "author": "Richard Parnaby-King",
    "homepage_url": "https:\/\/github.com\/richard-parnaby-king\/Reload-CSS",
    "icons": {
        "128": "icon.png"
    },
    "browser_action": {
        "default_icon": "icon.png"
    },
    "permissions": [
        "tabs",
        "http:\/\/*\/*",
        "https:\/\/*\/*"
    ],
    "background": {
        "scripts": [
            "background.js"
        ],
        "persistent": false
    }
}