Reload CSS

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

What is Reload CSS?

Reload CSS is a Chrome extension developed by https://richard.parnaby-king.co.uk, and its main feature is "A developer tool that adds a button to reload only css stylesheets.".

Extension Screenshots

screenshot
screenshot

Download Reload CSS Extension CRX File

Download Reload CSS extension files in crx format, manually install Chrome extensions in the browser, or share the crx files with friends to easily install Chrome extensions.

Extension Usage Instructions

                        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`                    

Extension Basic Information

Name Reload CSS Reload CSS
ID ojbbeapndipcgcjgmlelgbgmmalhjkef
Official URL https://chromewebstore.google.com/detail/reload-css/ojbbeapndipcgcjgmlelgbgmmalhjkef
Description A developer tool that adds a button to reload only css stylesheets.
File Size 106 KB
Installation Count 97
Current Version 1
Last Updated 2016-03-10
Publish Date 2016-03-10
Rating 4.00/5 Total 1 Ratings
Developer https://richard.parnaby-king.co.uk
Payment Type free
Extension Website https://github.com/richard-parnaby-king/Reload-CSS
Supported Languages 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
    }
}