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 là gì?

Live Server Web Extension là một tiện ích mở rộng Chrome được phát triển bởi ritwickdey, và tính năng chính của nó là "Makes your existing server live. This is a browser extension that helps you to live reload feature for dynamic pages".

Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng

Tải xuống tệp CRX của tiện ích mở rộng Live Server Web Extension

Tải xuống các tệp mở rộng Live Server Web Extension dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.

Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng

                        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                    

Thông Tin Cơ Bản về Tiện Ích Mở Rộng

Tên Live Server Web Extension Live Server Web Extension
ID fiegdmejfepffgpnejdinekhfieaogmj
URL Chính Thức https://chromewebstore.google.com/detail/live-server-web-extension/fiegdmejfepffgpnejdinekhfieaogmj
Mô tả Makes your existing server live. This is a browser extension that helps you to live reload feature for dynamic pages
Kích Thước Tệp 429 KB
Số Lần Cài Đặt 212,553
Phiên Bản Hiện Tại 1.4.0
Cập Nhật Lần Cuối 2021-05-02
Ngày Phát Hành 2018-05-18
Đánh Giá 3.95/5 Tổng số 56 Đánh Giá
Nhà Phát Triển ritwickdey
Email [email protected]
Loại Thanh Toán free
Trang Web Mở Rộng https://github.com/ritwickdey/
URL Trang Trợ Giúp https://github.com/ritwickdey/live-server-web-extension
Ngôn Ngữ Được Hỗ Trợ 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:\/\/*\/*"
    ]
}