Live Server Web Extension

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

Co to jest Live Server Web Extension?

Live Server Web Extension to rozszerzenie Chrome opracowane przez ritwickdey, a jego główną funkcją jest „Makes your existing server live. This is a browser extension that helps you to live reload feature for dynamic pages”.

Zrzuty ekranu rozszerzenia

Pobierz plik CRX rozszerzenia Live Server Web Extension

Pobierz pliki rozszerzeń Live Server Web Extension w formacie crx, zainstaluj ręcznie rozszerzenia Chrome w przeglądarce lub udostępnij pliki crx znajomym, aby łatwo zainstalować rozszerzenia Chrome.

Instrukcja Użytkowania Rozszerzenia

                        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                    

Podstawowe informacje o rozszerzeniu

Nazwa Live Server Web Extension Live Server Web Extension
ID fiegdmejfepffgpnejdinekhfieaogmj
Oficjalny URL https://chromewebstore.google.com/detail/live-server-web-extension/fiegdmejfepffgpnejdinekhfieaogmj
Opis Makes your existing server live. This is a browser extension that helps you to live reload feature for dynamic pages
Rozmiar pliku 429 KB
Liczba instalacji 212,553
Aktualna Wersja 1.4.0
Ostatnia Aktualizacja 2021-05-02
Data Publikacji 2018-05-18
Ocena 3.95/5 Łącznie 56 Oceny
Deweloper ritwickdey
E-mail [email protected]
Typ Płatności free
Strona Rozszerzenia https://github.com/ritwickdey/
Adres URL Strony Pomocy https://github.com/ritwickdey/live-server-web-extension
Obsługiwane Języki 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:\/\/*\/*"
    ]
}