LiveReload++

Watches a port and reloads the page if needed.

LiveReload++란 무엇입니까?

LiveReload++은(는) codePlanet에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Watches a port and reloads the page if needed."입니다.

확장 프로그램 스크린샷

screenshot

LiveReload++ 확장 프로그램 CRX 파일 다운로드

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

확장 프로그램 사용 설명서

                        Provides extended support for LiveReload (livereload.com) in Chrome. This version includes support for options such as host and port. 

It appears the original project is no longer active. This extension has been rewritten as to not violate the license from the original project. Due to this, there might be some missing features. If you would like additional features added, please make a request.                    

확장 프로그램 기본 정보

이름 LiveReload++ LiveReload++
ID ciehpookapcdlakedibajeccomagbfab
공식 URL https://chromewebstore.google.com/detail/livereload++/ciehpookapcdlakedibajeccomagbfab
설명 Watches a port and reloads the page if needed.
파일 크기 16.46 KB
설치 횟수 5,023
현재 버전 0.0.2
최근 업데이트 2017-01-09
출시 날짜 2017-01-09
평점 5.00/5 총 6 개의 평점
개발자 codePlanet
결제 유형 free
지원되는 언어 en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "LiveReload++",
    "description": "Watches a port and reloads the page if needed.",
    "version": "0.0.2",
    "content_scripts": [
        {
            "matches": [
                "http:\/\/*\/*"
            ],
            "js": [
                "scripts\/content.js"
            ],
            "css": [
                "content.css"
            ]
        }
    ],
    "browser_action": {
        "default_icon": {
            "128": "images\/icon-inactive.png"
        },
        "default_title": "Livereload"
    },
    "background": {
        "scripts": [
            "scripts\/eventPage.js"
        ],
        "persistent": false
    },
    "options_ui": {
        "page": "options.html",
        "chrome_style": true
    },
    "permissions": [
        "activeTab",
        "storage",
        "webNavigation",
        "tabs"
    ]
}