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文件
下載Live Server Web Extension擴展crx格式的文件,手動將Chrome擴充功能安裝到瀏覽器中,也可以將crx文件分享給朋友,輕鬆安裝Chrome擴充功能。
擴展使用說明
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 擴展基本資訊
| 名稱 | |
| ID | fiegdmejfepffgpnejdinekhfieaogmj |
| 官方網址 | 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:\/\/*\/*"
]
} | |