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 |
| 公式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 |
| Eメール | [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:\/\/*\/*"
]
} | |