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
官方網址 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"
        }
    }
}