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 مع الأصدقاء لتثبيت الامتدادات بسهولة.
تعليمات استخدام التمديد
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/ |
عنوان صفحة المساعدة | 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:\/\/*\/*" ] } |