CSS Reloader (fixed)

CSS Reloader is a browser extension, that allows you to reload CSS without reloading the page itself.

CSS Reloader (fixed)란 무엇입니까?

CSS Reloader (fixed)은(는) KhodeN에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "CSS Reloader is a browser extension, that allows you to reload CSS without reloading the page itself."입니다.

CSS Reloader (fixed) 확장 프로그램 CRX 파일 다운로드

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

확장 프로그램 사용 설명서

                        This is fork of https://chrome.google.com/webstore/detail/css-reloader/dnfpcpfijpdhabaoieccoclghgplmpbd extension with fixed error. Works in current Chrome.                    

확장 프로그램 기본 정보

이름 CSS Reloader (fixed) CSS Reloader (fixed)
ID fkbenfjedcbdpmkgbmbliahhmohamdlj
공식 URL https://chrome.google.com/webstore/detail/css-reloader-fixed/fkbenfjedcbdpmkgbmbliahhmohamdlj
설명 CSS Reloader is a browser extension, that allows you to reload CSS without reloading the page itself.
파일 크기 85.38 KB
설치 횟수 304
현재 버전 1.1.2
최근 업데이트 2016-08-03
출시 날짜 2016-08-03
평점 1.00/5 총 4 개의 평점
개발자 KhodeN
결제 유형 free
확장 프로그램 웹 사이트 https://chrome.google.com/webstore/detail/css-reloader/dnfpcpfijpdhabaoieccoclghgplmpbd
도움말 페이지 URL https://chrome.google.com/webstore/detail/css-reloader/dnfpcpfijpdhabaoieccoclghgplmpbd
지원되는 언어 en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "background": {
        "page": "background.htm"
    },
    "content_scripts": [
        {
            "js": [
                "cssreloader.content.js"
            ],
            "matches": [
                "http:\/\/*\/*",
                "https:\/\/*\/*"
            ]
        }
    ],
    "description": "CSS Reloader is a browser extension, that allows you to reload CSS without reloading the page itself.",
    "icons": {
        "128": "icons\/icon_128.png",
        "16": "icons\/icon_16.png",
        "256": "icons\/icon_256.png",
        "48": "icons\/icon_48.png"
    },
    "name": "CSS Reloader (fixed)",
    "options_page": "options.htm",
    "permissions": [
        "http:\/\/*\/*",
        "https:\/\/*\/*",
        "contextMenus",
        "tabs"
    ],
    "version": "1.1.2"
}