Reload CSS

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

Vad är Reload CSS?

Reload CSS är en Chrome-tillägg utvecklad av https://richard.parnaby-king.co.uk, och dess huvudfunktion är "A developer tool that adds a button to reload only css stylesheets.".

Tilläggsskärmbilder

screenshot
screenshot

Ladda ner Reload CSS-förlängningens CRX-fil

Ladda ner Reload CSS-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

                        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äggande Information om Tillägg

Namn Reload CSS Reload CSS
ID ojbbeapndipcgcjgmlelgbgmmalhjkef
Officiell webbadress https://chromewebstore.google.com/detail/reload-css/ojbbeapndipcgcjgmlelgbgmmalhjkef
Beskrivning A developer tool that adds a button to reload only css stylesheets.
Filstorlek 106 KB
Antal Installationer 97
Aktuell Version 1
Senast Uppdaterad 2016-03-10
Publiceringsdatum 2016-03-10
Betyg 4.00/5 Totalt 1 Betyg
Utvecklare https://richard.parnaby-king.co.uk
Betalningssätt free
Tilläggswebbplats https://github.com/richard-parnaby-king/Reload-CSS
Stödda Språk 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
    }
}