LiveReload++
Watches a port and reloads the page if needed.
Cos'è LiveReload++?
LiveReload++ è un'estensione di Chrome sviluppata da codePlanet, e la sua funzione principale è "Watches a port and reloads the page if needed.".
Screenshot dell'Estensione
Scarica il file CRX dell'estensione LiveReload++
Scarica i file di estensione LiveReload++ in formato crx, installa manualmente le estensioni di Chrome nel browser o condividi i file crx con gli amici per installare facilmente le estensioni di Chrome.
Istruzioni per l'Uso dell'Estensione
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.
Informazioni di Base sull'Estensione
Nome | LiveReload++ |
ID | ciehpookapcdlakedibajeccomagbfab |
URL Ufficiale | https://chromewebstore.google.com/detail/livereload++/ciehpookapcdlakedibajeccomagbfab |
Descrizione | Watches a port and reloads the page if needed. |
Dimensione del File | 16.46 KB |
Conteggio Installazioni | 5,023 |
Versione Corrente | 0.0.2 |
Ultimo Aggiornamento | 2017-01-09 |
Data di Pubblicazione | 2017-01-09 |
Valutazione | 5.00/5 Totale 6 Valutazioni |
Sviluppatore | codePlanet |
Tipo di Pagamento | free |
Lingue Supportate | 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" ] } |