LiveReload++
Watches a port and reloads the page if needed.
Co je LiveReload++?
LiveReload++ je rozšíření Chrome vyvinuté codePlanet, a jeho hlavní funkcí je „Watches a port and reloads the page if needed.“.
Snímky obrazovky rozšíření
Stáhnout soubor CRX rozšíření LiveReload++
Stáhněte si soubory rozšíření LiveReload++ ve formátu crx, ručně nainstalujte rozšíření Chrome do prohlížeče nebo sdílejte soubory crx s přáteli, abyste jednoduše nainstalovali rozšíření Chrome.
Pokyny pro Použití Rozšíření
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.
Základní Informace o Rozšíření
Název | LiveReload++ |
ID | ciehpookapcdlakedibajeccomagbfab |
Oficiální URL | https://chromewebstore.google.com/detail/livereload++/ciehpookapcdlakedibajeccomagbfab |
Popis | Watches a port and reloads the page if needed. |
Velikost souboru | 16.46 KB |
Počet instalací | 5,023 |
Aktuální Verze | 0.0.2 |
Poslední Aktualizace | 2017-01-09 |
Datum Vydání | 2017-01-09 |
Hodnocení | 5.00/5 Celkem 6 Hodnocení |
Vývojář | codePlanet |
Typ Platby | free |
Podporované Jazyky | 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" ] } |