J CSS Reload

Simple CSS Reload utility

What is J CSS Reload?

J CSS Reload is a Chrome extension developed by jslayer, and its main feature is "Simple CSS Reload utility".

Extension Screenshots

screenshot

Download J CSS Reload Extension CRX File

Download J CSS Reload 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

                        Refresh your css files without realoding the page. Just simply click nice green refresh button or use shortcut.

Source: https://github.com/jslayer/css-reload

New in 1.2.5:

added: icon blinking on activate
added: command support (activate in "Keyboard shortcuts" at the bottom of chrome://extensions/ page).

New in 1.2.3:

added: fonts.googleapis.com into ignored list

New in 1.2:

Add experimental `@import url(...` support.

New in 1.1:

Several public CDN hosts are now ignored while refreshing:

 - yui.yahooapis.com
 - ajax.googleapis.com
 - ajax.aspnetcdn.com
 - ajax.microsoft.com
 - code.jquery.com                    

Extension Basic Information

Name J CSS Reload J CSS Reload
ID nnmebjmgdonemncjdliomljdfhpnlekk
Official URL https://chromewebstore.google.com/detail/j-css-reload/nnmebjmgdonemncjdliomljdfhpnlekk
Description Simple CSS Reload utility
File Size 15.8 KB
Installation Count 4,214
Current Version 1.2.5
Last Updated 2013-11-25
Publish Date 2013-11-25
Rating 4.50/5 Total 52 Ratings
Developer jslayer
Payment Type free
Extension Website https://github.com/jslayer/css-reload
Supported Languages en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "__MSG_appName__",
    "description": "__MSG_appDescription__",
    "version": "1.2.5",
    "manifest_version": 2,
    "default_locale": "en",
    "background": {
        "page": "background.html"
    },
    "permissions": [
        "tabs",
        ""
    ],
    "page_action": {
        "default_title": "__MSG_pageActionTitle__",
        "default_icon": "icon-48.png"
    },
    "icons": {
        "19": "icon-48.png",
        "48": "icon-48.png"
    },
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "js": [
                "content_script.js"
            ]
        }
    ],
    "commands": {
        "_execute_page_action": {
            "suggested_key": {
                "default": "Ctrl+E",
                "mac": "Command+E"
            },
            "description": "CSS Reload"
        }
    }
}