LiveReload++
Watches a port and reloads the page if needed.
Wat is LiveReload++?
LiveReload++ is een Chrome-extensie ontwikkeld door codePlanet, en de belangrijkste functie is "Watches a port and reloads the page if needed.".
Extensie Screenshots
Download het CRX-bestand van de extensie LiveReload++
Download LiveReload++-extensiebestanden in crx-indeling, installeer Chrome-extensies handmatig in de browser of deel de crx-bestanden met vrienden om Chrome-extensies eenvoudig te installeren.
Instructies voor het Gebruik van de Extensie
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.
Basisinformatie over de Extensie
Naam | LiveReload++ |
ID | ciehpookapcdlakedibajeccomagbfab |
Officiële URL | https://chromewebstore.google.com/detail/livereload++/ciehpookapcdlakedibajeccomagbfab |
Beschrijving | Watches a port and reloads the page if needed. |
Bestandsgrootte | 16.46 KB |
Aantal Installaties | 5,023 |
Huidige Versie | 0.0.2 |
Laatst Bijgewerkt | 2017-01-09 |
Publicatiedatum | 2017-01-09 |
Beoordeling | 5.00/5 Totaal 6 Beoordelingen |
Ontwikkelaar | codePlanet |
Betalingswijze | free |
Ondersteunde Talen | 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" ] } |