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 เป็นส่วนขยายของ Chrome ที่พัฒนาโดย ritwickdey และคุณลักษณะหลักของมันคือ "Makes your existing server live. This is a browser extension that helps you to live reload feature for dynamic pages"

ภาพหน้าจอของส่วนขยาย

ดาวน์โหลดไฟล์ CRX ของส่วนขยาย Live Server Web Extension

ดาวน์โหลดไฟล์ส่วนขยาย 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                    

ข้อมูลพื้นฐานของส่วนขยาย

ชื่อ Live Server Web Extension 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:\/\/*\/*"
    ]
}