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 द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Makes your existing server live. This is a browser extension that helps you to live reload feature for dynamic pages"।
एक्सटेंशन स्क्रीनशॉट्स
एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें
crx प्रारूप में Live Server Web Extension एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ 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:\/\/*\/*" ] } |