Reload CSS

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

Hvad er Reload CSS?

Reload CSS er en Chrome-udvidelse udviklet af https://richard.parnaby-king.co.uk, og dens hovedfunktion er "A developer tool that adds a button to reload only css stylesheets.".

Udvidelsesskærmbilleder

screenshot
screenshot

Download Reload CSS-udvidelses-CRX-fil

Download Reload CSS-udvidelsesfiler i crx-format, installer Chrome-udvidelser manuelt i browseren eller del crx-filer med venner for nemt at installere Chrome-udvidelser.

Brugsanvisning til Udvidelsen

                        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`                    

Grundlæggende oplysninger om udvidelsen

Navn Reload CSS Reload CSS
ID ojbbeapndipcgcjgmlelgbgmmalhjkef
Officiel URL https://chromewebstore.google.com/detail/reload-css/ojbbeapndipcgcjgmlelgbgmmalhjkef
Beskrivelse A developer tool that adds a button to reload only css stylesheets.
Filstørrelse 106 KB
Antal Installationer 97
Nuværende Version 1
Senest Opdateret 2016-03-10
Udgivelsesdato 2016-03-10
Bedømmelse 4.00/5 Samlet 1 Bedømmelser
Udvikler https://richard.parnaby-king.co.uk
Betalingsmetode free
Udvidelseswebsted https://github.com/richard-parnaby-king/Reload-CSS
Understøttede Sprog 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
    }
}