LiveReload++
Watches a port and reloads the page if needed.
LiveReload++ क्या है?
LiveReload++ codePlanet द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Watches a port and reloads the page if needed."।
एक्सटेंशन स्क्रीनशॉट्स
एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें
crx प्रारूप में LiveReload++ एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ crx फ़ाइलों को साझा करें ताकि क्रोम एक्सटेंशन को आसानी से स्थापित किया जा सके।
एक्सटेंशन उपयोग निर्देश
Provides extended support for LiveReload (livereload.com) in Chrome. This version includes support for options such as host and port. It appears the original project is no longer active. This extension has been rewritten as to not violate the license from the original project. Due to this, there might be some missing features. If you would like additional features added, please make a request.
एक्सटेंशन की मूल जानकारी
नाम | LiveReload++ |
ID | ciehpookapcdlakedibajeccomagbfab |
आधिकारिक URL | https://chromewebstore.google.com/detail/livereload++/ciehpookapcdlakedibajeccomagbfab |
विवरण | Watches a port and reloads the page if needed. |
फ़ाइल का आकार | 16.46 KB |
स्थापना संख्या | 5,023 |
वर्तमान संस्करण | 0.0.2 |
अंतिम अपडेट | 2017-01-09 |
प्रकाशन तिथि | 2017-01-09 |
रेटिंग | 5.00/5 कुल 6 रेटिंग्स |
डेवलपर | codePlanet |
भुगतान के प्रकार | free |
समर्थित भाषाएँ | en-US |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "LiveReload++", "description": "Watches a port and reloads the page if needed.", "version": "0.0.2", "content_scripts": [ { "matches": [ "http:\/\/*\/*" ], "js": [ "scripts\/content.js" ], "css": [ "content.css" ] } ], "browser_action": { "default_icon": { "128": "images\/icon-inactive.png" }, "default_title": "Livereload" }, "background": { "scripts": [ "scripts\/eventPage.js" ], "persistent": false }, "options_ui": { "page": "options.html", "chrome_style": true }, "permissions": [ "activeTab", "storage", "webNavigation", "tabs" ] } |