LiveReload++
Watches a port and reloads the page if needed.
Co to jest LiveReload++?
LiveReload++ to rozszerzenie Chrome opracowane przez codePlanet, a jego główną funkcją jest „Watches a port and reloads the page if needed.”.
Zrzuty ekranu rozszerzenia
Pobierz plik CRX rozszerzenia LiveReload++
Pobierz pliki rozszerzeń LiveReload++ w formacie crx, zainstaluj ręcznie rozszerzenia Chrome w przeglądarce lub udostępnij pliki crx znajomym, aby łatwo zainstalować rozszerzenia Chrome.
Instrukcja Użytkowania Rozszerzenia
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.
Podstawowe informacje o rozszerzeniu
Nazwa | LiveReload++ |
ID | ciehpookapcdlakedibajeccomagbfab |
Oficjalny URL | https://chromewebstore.google.com/detail/livereload++/ciehpookapcdlakedibajeccomagbfab |
Opis | Watches a port and reloads the page if needed. |
Rozmiar pliku | 16.46 KB |
Liczba instalacji | 5,023 |
Aktualna Wersja | 0.0.2 |
Ostatnia Aktualizacja | 2017-01-09 |
Data Publikacji | 2017-01-09 |
Ocena | 5.00/5 Łącznie 6 Oceny |
Deweloper | codePlanet |
Typ Płatności | free |
Obsługiwane Języki | 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" ] } |