Live Server Web Extension
Makes your existing server live. This is a browser extension that helps you to live reload feature for dynamic pages
O que é Live Server Web Extension?
Live Server Web Extension é uma extensão do Chrome desenvolvida por ritwickdey, e sua principal característica é "Makes your existing server live. This is a browser extension that helps you to live reload feature for dynamic pages".
Capturas de Tela da Extensão
Baixar o arquivo CRX da Extensão Live Server Web Extension
Baixe arquivos de extensão Live Server Web Extension no formato crx, instale manualmente as extensões do Chrome no navegador ou compartilhe os arquivos crx com amigos para instalar facilmente as extensões do Chrome.
Instruções de Uso da Extensão
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
Informações Básicas da Extensão
Nome | Live Server Web Extension |
ID | fiegdmejfepffgpnejdinekhfieaogmj |
URL Oficial | https://chromewebstore.google.com/detail/live-server-web-extension/fiegdmejfepffgpnejdinekhfieaogmj |
Descrição | Makes your existing server live. This is a browser extension that helps you to live reload feature for dynamic pages |
Tamanho do Arquivo | 429 KB |
Contagem de Instalações | 212,553 |
Versão Atual | 1.4.0 |
Última Atualização | 2021-05-02 |
Data de Publicação | 2018-05-18 |
Classificação | 3.95/5 Total de 56 Avaliações |
Desenvolvedor | ritwickdey |
[email protected] | |
Tipo de Pagamento | free |
Site da Extensão | https://github.com/ritwickdey/ |
URL da Página de Ajuda | https://github.com/ritwickdey/live-server-web-extension |
Idiomas Suportados | 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:\/\/*\/*" ] } |