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