Live Server Web Extension
Makes your existing server live. This is a browser extension that helps you to live reload feature for dynamic pages
Live Server Web Extension란 무엇입니까?
Live Server Web Extension은(는) ritwickdey에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Makes your existing server live. This is a browser extension that helps you to live reload feature for dynamic pages"입니다.
확장 프로그램 스크린샷
Live Server Web Extension 확장 프로그램 CRX 파일 다운로드
크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.
확장 프로그램 사용 설명서
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
확장 프로그램 기본 정보
이름 | Live Server Web Extension |
ID | fiegdmejfepffgpnejdinekhfieaogmj |
공식 URL | https://chromewebstore.google.com/detail/live-server-web-extension/fiegdmejfepffgpnejdinekhfieaogmj |
설명 | Makes your existing server live. This is a browser extension that helps you to live reload feature for dynamic pages |
파일 크기 | 429 KB |
설치 횟수 | 212,553 |
현재 버전 | 1.4.0 |
최근 업데이트 | 2021-05-02 |
출시 날짜 | 2018-05-18 |
평점 | 3.95/5 총 56 개의 평점 |
개발자 | ritwickdey |
이메일 | [email protected] |
결제 유형 | free |
확장 프로그램 웹 사이트 | https://github.com/ritwickdey/ |
도움말 페이지 URL | https://github.com/ritwickdey/live-server-web-extension |
지원되는 언어 | 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:\/\/*\/*" ] } |