Live Server Web Extension
Makes your existing server live. This is a browser extension that helps you to live reload feature for dynamic pages
What is Live Server Web Extension?
Live Server Web Extension is a Chrome extension developed by ritwickdey, and its main feature is "Makes your existing server live. This is a browser extension that helps you to live reload feature for dynamic pages".
Extension Screenshots
Download Live Server Web Extension Extension CRX File
Download Live Server Web Extension extension files in crx format, manually install Chrome extensions in the browser, or share the crx files with friends to easily install Chrome extensions.
Extension Usage Instructions
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
Extension Basic Information
Name | Live Server Web Extension |
ID | fiegdmejfepffgpnejdinekhfieaogmj |
Official URL | https://chromewebstore.google.com/detail/live-server-web-extension/fiegdmejfepffgpnejdinekhfieaogmj |
Description | Makes your existing server live. This is a browser extension that helps you to live reload feature for dynamic pages |
File Size | 429 KB |
Installation Count | 212,553 |
Current Version | 1.4.0 |
Last Updated | 2021-05-02 |
Publish Date | 2018-05-18 |
Rating | 3.95/5 Total 56 Ratings |
Developer | ritwickdey |
[email protected] | |
Payment Type | free |
Extension Website | https://github.com/ritwickdey/ |
Help Page URL | https://github.com/ritwickdey/live-server-web-extension |
Supported Languages | 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:\/\/*\/*" ] } |