Live Server Web Extension
Makes your existing server live. This is a browser extension that helps you to live reload feature for dynamic pages
Qu'est-ce que Live Server Web Extension ?
Live Server Web Extension est une extension Chrome développée par ritwickdey, et sa fonction principale est "Makes your existing server live. This is a browser extension that helps you to live reload feature for dynamic pages".
Captures d'Écran de l'Extension
Télécharger le fichier CRX de l'extension Live Server Web Extension
Téléchargez les fichiers d'extension Live Server Web Extension au format crx, installez manuellement les extensions Chrome dans le navigateur ou partagez les fichiers crx avec des amis pour installer facilement les extensions Chrome.
Instructions d'Utilisation de l'Extension
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
Informations de Base sur l'Extension
Nom | Live Server Web Extension |
ID | fiegdmejfepffgpnejdinekhfieaogmj |
URL Officiel | 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 |
Taille du Fichier | 429 KB |
Nombre d'Installations | 212,553 |
Version Actuelle | 1.4.0 |
Dernière Mise à Jour | 2021-05-02 |
Date de Publication | 2018-05-18 |
Évaluation | 3.95/5 Total 56 Évaluations |
Développeur | ritwickdey |
[email protected] | |
Type de Paiement | free |
Site Web de l'Extension | https://github.com/ritwickdey/ |
URL de la Page d'Aide | https://github.com/ritwickdey/live-server-web-extension |
Langues Prises en Charge | 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:\/\/*\/*" ] } |