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
官方網址 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"
    ]
}