Live Server Web Extension

Makes your existing server live. This is a browser extension that helps you to live reload feature for dynamic pages

什么是Live Server Web Extension?

Live Server Web Extension是由ritwickdey开发的Chrome扩展程序,该扩展的主要功能是“Makes your existing server live. This is a browser extension that helps you to live reload feature for dynamic pages”。

扩展截图

下载Live Server Web Extension扩展crx文件

下载Live Server Web Extension扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。

扩展使用说明

                        Live Server - Makes your existing server live - this is a Web Extension that helps you to live reload feature for dynamic content (PHP, Node.js, ASPNET -- Whatever, it doesn't matter).

This extension is for Live Server (VSCode Extension - required v3.0.0+).

You have to install Live Server extension for vscode in order to use this Add On.

Follow this link to setup : https://github.com/ritwickdey/live-server-web-extension#setup

Demo : https://raw.githubusercontent.com/ritwickdey/live-server-web-extension/master/img/screenshots/live-server-web-extension.gif                    

扩展基本信息

名称 Live Server Web Extension Live Server Web Extension
ID fiegdmejfepffgpnejdinekhfieaogmj
官方URL https://chromewebstore.google.com/detail/live-server-web-extension/fiegdmejfepffgpnejdinekhfieaogmj
简介 Makes your existing server live. This is a browser extension that helps you to live reload feature for dynamic pages
文件大小 429 KB
安装次数 212,553
当前版本 1.4.0
更新时间 2021-05-02
上架时间 2018-05-18
评分 3.95/5 共56次评分
开发者 ritwickdey
电子邮箱 [email protected]
付费类型 free
扩展官网 https://github.com/ritwickdey/
帮助页面URL https://github.com/ritwickdey/live-server-web-extension
支持的语言 en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Live Server Web Extension",
    "version": "1.4.0",
    "description": " Makes your existing server live. This is a browser extension that helps you to live reload feature for dynamic pages",
    "icons": {
        "96": ".\/img\/icon.png",
        "128": ".\/img\/icon128.png"
    },
    "author": "Ritwick Dey",
    "short_name": "Live Server Web Extension",
    "homepage_url": "https:\/\/github.com\/ritwickdey\/live-server-web-extension",
    "content_scripts": [
        {
            "matches": [
                "http:\/\/*\/*",
                "https:\/\/*\/*"
            ],
            "js": [
                "reload.js"
            ]
        }
    ],
    "background": {
        "scripts": [
            "background.js"
        ]
    },
    "browser_action": {
        "default_popup": ".\/popup\/popup.html",
        "default_icon": ".\/img\/icon.png",
        "default_title": "Live Server"
    },
    "permissions": [
        "http:\/\/*\/*",
        "https:\/\/*\/*"
    ]
}