Live Server Web Extension

Makes your existing server live. This is a browser extension that helps you to live reload feature for dynamic pages

Apa itu Live Server Web Extension?

Live Server Web Extension adalah ekstensi Chrome yang dikembangkan oleh ritwickdey, dan fitur utamanya adalah "Makes your existing server live. This is a browser extension that helps you to live reload feature for dynamic pages".

Screenshot Ekstensi

Unduh Berkas CRX Ekstensi Live Server Web Extension

Unduh file ekstensi Live Server Web Extension dalam format crx, pasang ekstensi Chrome secara manual di peramban, atau bagikan file crx dengan teman untuk menginstal ekstensi Chrome dengan mudah.

Petunjuk Penggunaan Ekstensi

                        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                    

Informasi Dasar Ekstensi

Nama Live Server Web Extension Live Server Web Extension
ID fiegdmejfepffgpnejdinekhfieaogmj
URL Resmi https://chromewebstore.google.com/detail/live-server-web-extension/fiegdmejfepffgpnejdinekhfieaogmj
Deskripsi Makes your existing server live. This is a browser extension that helps you to live reload feature for dynamic pages
Ukuran File 429 KB
Jumlah Instalasi 212,553
Versi Saat Ini 1.4.0
Terakhir Diperbarui 2021-05-02
Tanggal Publikasi 2018-05-18
Penilaian 3.95/5 Total 56 Penilaian
Pengembang ritwickdey
Email [email protected]
Tipe Pembayaran free
Situs Ekstensi https://github.com/ritwickdey/
URL Halaman Bantuan https://github.com/ritwickdey/live-server-web-extension
Bahasa yang Didukung 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:\/\/*\/*"
    ]
}