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 je Live Server Web Extension?
Live Server Web Extension je rozšíření Chrome vyvinuté ritwickdey, a jeho hlavní funkcí je „Makes your existing server live. This is a browser extension that helps you to live reload feature for dynamic pages“.
Snímky obrazovky rozšíření
Stáhnout soubor CRX rozšíření Live Server Web Extension
Stáhněte si soubory rozšíření Live Server Web Extension ve formátu crx, ručně nainstalujte rozšíření Chrome do prohlížeče nebo sdílejte soubory crx s přáteli, abyste jednoduše nainstalovali rozšíření Chrome.
Pokyny pro Použití Rozšíření
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
Základní Informace o Rozšíření
Název | Live Server Web Extension |
ID | fiegdmejfepffgpnejdinekhfieaogmj |
Oficiální URL | https://chromewebstore.google.com/detail/live-server-web-extension/fiegdmejfepffgpnejdinekhfieaogmj |
Popis | Makes your existing server live. This is a browser extension that helps you to live reload feature for dynamic pages |
Velikost souboru | 429 KB |
Počet instalací | 212,553 |
Aktuální Verze | 1.4.0 |
Poslední Aktualizace | 2021-05-02 |
Datum Vydání | 2018-05-18 |
Hodnocení | 3.95/5 Celkem 56 Hodnocení |
Vývojář | ritwickdey |
[email protected] | |
Typ Platby | free |
Webové stránky Rozšíření | https://github.com/ritwickdey/ |
URL Stránky Nápovědy | https://github.com/ritwickdey/live-server-web-extension |
Podporované Jazyky | 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:\/\/*\/*" ] } |