Autoreloader: Reload tab on file change (Win)

(Windows only) Monitor files on your hard disk and reload pages automatically

Autoreloader: Reload tab on file change (Win)란 무엇입니까?

Autoreloader: Reload tab on file change (Win)은(는) robotreply에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "(Windows only) Monitor files on your hard disk and reload pages automatically"입니다.

확장 프로그램 스크린샷

screenshot

Autoreloader: Reload tab on file change (Win) 확장 프로그램 CRX 파일 다운로드

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

확장 프로그램 사용 설명서

                        Autoreloader v0.0.1

Automatically reload chrome tabs if files changes

Step 1: Install the file monitor server

- Download setup.exe from https://github.com/autoreloader/autoreloader/blob/master/Setup.exe?raw=true
- Run setup.exe
Step 2: Install the chrome extension

- Search "autoreloader" on chrome store and install extension
Step 3: Add folders that you would like to monitor using the "add directory" button.

That's it! Now anytime a new file is added, changed, or removed in the folders you're monitoring your active tab will automatically reload.

This is an open source app. You can find the full code for Server (Delphi) and Extension (Javascript) here:

https://github.com/autoreloader/autoreloader

Pull requests are always welcome!                    

확장 프로그램 기본 정보

이름 Autoreloader: Reload tab on file change (Win) Autoreloader: Reload tab on file change (Win)
ID innoeeijgleieecngfliphpjchmcobok
공식 URL https://chromewebstore.google.com/detail/autoreloader-reload-tab-o/innoeeijgleieecngfliphpjchmcobok
설명 (Windows only) Monitor files on your hard disk and reload pages automatically
파일 크기 30.93 KB
설치 횟수 247
현재 버전 0.0.3
최근 업데이트 2016-08-03
출시 날짜 2016-08-03
평점 4.00/5 총 4 개의 평점
개발자 robotreply
결제 유형 free
지원되는 언어 en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Autoreloader: Reload tab on file change (Win)",
    "version": "0.0.3",
    "manifest_version": 2,
    "description": "(Windows only) Monitor files on your hard disk and reload pages automatically",
    "homepage_url": "https:\/\/github.com\/autoreloader\/autoreloader",
    "icons": {
        "16": "icons\/icon16.png",
        "48": "icons\/icon48.png",
        "128": "icons\/icon128.png"
    },
    "default_locale": "en",
    "background": {
        "scripts": [
            "src\/bg\/background.js"
        ],
        "persistent": true
    },
    "browser_action": {
        "default_icon": "icons\/icon19.png",
        "default_title": "Enable Auto-Reloader"
    },
    "options_page": "src\/options\/index.html",
    "permissions": [
        "tabs",
        "storage",
        "http:\/\/*\/*",
        "https:\/\/*\/*"
    ]
}