J CSS Reload

Simple CSS Reload utility

J CSS Reload란 무엇입니까?

J CSS Reload은(는) jslayer에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Simple CSS Reload utility"입니다.

확장 프로그램 스크린샷

screenshot

J CSS Reload 확장 프로그램 CRX 파일 다운로드

크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.

확장 프로그램 사용 설명서

                        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"
        }
    }
}