LiveReload++
Watches a port and reloads the page if needed.
Vad är LiveReload++?
LiveReload++ är en Chrome-tillägg utvecklad av codePlanet, och dess huvudfunktion är "Watches a port and reloads the page if needed.".
Tilläggsskärmbilder
Ladda ner LiveReload++-förlängningens CRX-fil
Ladda ner LiveReload++-filändelser i crx-format, installera Chrome-tillägg manuellt i webbläsaren eller dela crx-filerna med vänner för att enkelt installera Chrome-tillägg.
Användarmanual för Tillägg
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.
Grundläggande Information om Tillägg
Namn | LiveReload++ |
ID | ciehpookapcdlakedibajeccomagbfab |
Officiell webbadress | https://chromewebstore.google.com/detail/livereload++/ciehpookapcdlakedibajeccomagbfab |
Beskrivning | Watches a port and reloads the page if needed. |
Filstorlek | 16.46 KB |
Antal Installationer | 5,023 |
Aktuell Version | 0.0.2 |
Senast Uppdaterad | 2017-01-09 |
Publiceringsdatum | 2017-01-09 |
Betyg | 5.00/5 Totalt 6 Betyg |
Utvecklare | codePlanet |
Betalningssätt | free |
Stödda Språk | 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" ] } |