LiveReload++
Watches a port and reloads the page if needed.
Was ist LiveReload++?
LiveReload++ ist eine Chrome-Erweiterung, die von codePlanet entwickelt wurde, und ihr Hauptmerkmal ist "Watches a port and reloads the page if needed.".
Erweiterungsscreenshots
LiveReload++-Erweiterungs-CRX-Datei herunterladen
Laden Sie LiveReload++-Erweiterungsdateien im crx-Format herunter, installieren Sie Chrome-Erweiterungen manuell im Browser oder teilen Sie die crx-Dateien mit Freunden, um Chrome-Erweiterungen einfach zu installieren.
Anleitung zur Verwendung der Erweiterung
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.
Grundlegende Informationen zur Erweiterung
Name | LiveReload++ |
ID | ciehpookapcdlakedibajeccomagbfab |
Offizielle URL | https://chromewebstore.google.com/detail/livereload++/ciehpookapcdlakedibajeccomagbfab |
Beschreibung | Watches a port and reloads the page if needed. |
Dateigröße | 16.46 KB |
Installationsanzahl | 5,023 |
Aktuelle Version | 0.0.2 |
Letztes Update | 2017-01-09 |
Veröffentlichungsdatum | 2017-01-09 |
Bewertung | 5.00/5 Insgesamt 6 Bewertungen |
Entwickler | codePlanet |
Zahlungsart | free |
Unterstützte Sprachen | 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" ] } |