Live Server Web Extension
Makes your existing server live. This is a browser extension that helps you to live reload feature for dynamic pages
Wat is Live Server Web Extension?
Live Server Web Extension is een Chrome-extensie ontwikkeld door ritwickdey, en de belangrijkste functie is "Makes your existing server live. This is a browser extension that helps you to live reload feature for dynamic pages".
Extensie Screenshots
Download het CRX-bestand van de extensie Live Server Web Extension
Download Live Server Web Extension-extensiebestanden in crx-indeling, installeer Chrome-extensies handmatig in de browser of deel de crx-bestanden met vrienden om Chrome-extensies eenvoudig te installeren.
Instructies voor het Gebruik van de Extensie
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
Basisinformatie over de Extensie
Naam | Live Server Web Extension |
ID | fiegdmejfepffgpnejdinekhfieaogmj |
Officiële URL | https://chromewebstore.google.com/detail/live-server-web-extension/fiegdmejfepffgpnejdinekhfieaogmj |
Beschrijving | Makes your existing server live. This is a browser extension that helps you to live reload feature for dynamic pages |
Bestandsgrootte | 429 KB |
Aantal Installaties | 212,553 |
Huidige Versie | 1.4.0 |
Laatst Bijgewerkt | 2021-05-02 |
Publicatiedatum | 2018-05-18 |
Beoordeling | 3.95/5 Totaal 56 Beoordelingen |
Ontwikkelaar | ritwickdey |
[email protected] | |
Betalingswijze | free |
Extensiewebsite | https://github.com/ritwickdey/ |
Help Pagina-URL | https://github.com/ritwickdey/live-server-web-extension |
Ondersteunde Talen | 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:\/\/*\/*" ] } |