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ファイルをダウンロード

LiveReload++拡張子のファイルをcrx形式でダウンロードし、ブラウザにChrome拡張機能を手動でインストールするか、crxファイルを友達と共有して簡単にChrome拡張機能をインストールします。

拡張機能の使用方法

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