J CSS Reload

Simple CSS Reload utility

什么是J CSS Reload?

J CSS Reload是由jslayer开发的Chrome扩展程序,该扩展的主要功能是“Simple CSS Reload utility”。

扩展截图

screenshot

下载J CSS Reload扩展crx文件

下载J CSS Reload扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。

扩展使用说明

                        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                    

扩展基本信息

名称 J CSS Reload J CSS Reload
ID nnmebjmgdonemncjdliomljdfhpnlekk
官方URL https://chromewebstore.google.com/detail/j-css-reload/nnmebjmgdonemncjdliomljdfhpnlekk
简介 Simple CSS Reload utility
文件大小 15.8 KB
安装次数 4,214
当前版本 1.2.5
更新时间 2013-11-25
上架时间 2013-11-25
评分 4.50/5 共52次评分
开发者 jslayer
付费类型 free
扩展官网 https://github.com/jslayer/css-reload
支持的语言 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"
        }
    }
}