Live Reload

Monitors source files on a page. Reloads the page or just the changed stylesheet when source files are updated.

Live Reload란 무엇입니까?

Live Reload은(는) Blaise Kal에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Monitors source files on a page. Reloads the page or just the changed stylesheet when source files are updated."입니다.

확장 프로그램 스크린샷

screenshot

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

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

확장 프로그램 사용 설명서

                        Monitors included scripts, stylesheets and/or frames on a page for changes using configurable rules. Reloads the entire page or just the source file that was changed.


Not sure why your page is not reloading? — Debug your rules by navigating to chrome://extensions, find the Live Reload tile, click "background page", visit the "Console" tab and monitor "All levels".


Due to security restrictions in web extensions, files served using the file system (file://...) *cannot* be monitored. A quick and easy workaround is to serve local files over http. See https://github.com/blaise-io/live-reload/issues/3#issuecomment-358755120


Doesn't work? Need a feature?  — Please create an issue on Github (https://github.com/blaise-io/live-reload/issue) or send a mail to [email protected].                    

확장 프로그램 기본 정보

이름 Live Reload Live Reload
ID jcejoncdonagmfohjcdgohnmecaipidc
공식 URL https://chrome.google.com/webstore/detail/jcejoncdonagmfohjcdgohnmecaipidc
설명 Monitors source files on a page. Reloads the page or just the changed stylesheet when source files are updated.
파일 크기 38.22 KB
설치 횟수 8,244
현재 버전 1.8.4
최근 업데이트 2021-08-07
출시 날짜 2020-06-30
평점 4.78/5 총 18 개의 평점
개발자 Blaise Kal
이메일 [email protected]
결제 유형 free
확장 프로그램 웹 사이트 https://github.com/blaise-io/live-reload
도움말 페이지 URL https://github.com/blaise-io/live-reload/issues
지원되는 언어 en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Live Reload",
    "version": "1.8.4",
    "description": "Monitors source files on a page. Reloads the page or just the changed stylesheet when source files are updated.",
    "homepage_url": "https:\/\/github.com\/blaise-io\/live-reload#readme",
    "permissions": [
        "",
        "storage",
        "tabs",
        "webNavigation",
        "webRequest"
    ],
    "background": {
        "scripts": [
            "\/polyfill.js",
            "\/background.js"
        ]
    },
    "icons": {
        "128": "\/icons\/icon.png"
    },
    "browser_action": {
        "browser_style": false,
        "default_icon": "\/icons\/icon.png",
        "default_popup": "\/popup.html"
    },
    "options_ui": {
        "page": "\/options.html"
    },
    "web_accessible_resources": [
        "\/polyfill.js"
    ]
}