LiveReload++
Watches a port and reloads the page if needed.
Apa itu LiveReload++?
LiveReload++ adalah ekstensi Chrome yang dikembangkan oleh codePlanet, dan fitur utamanya adalah "Watches a port and reloads the page if needed.".
Screenshot Ekstensi
Unduh Berkas CRX Ekstensi LiveReload++
Unduh file ekstensi LiveReload++ dalam format crx, pasang ekstensi Chrome secara manual di peramban, atau bagikan file crx dengan teman untuk menginstal ekstensi Chrome dengan mudah.
Petunjuk Penggunaan Ekstensi
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.
Informasi Dasar Ekstensi
Nama | LiveReload++ |
ID | ciehpookapcdlakedibajeccomagbfab |
URL Resmi | https://chromewebstore.google.com/detail/livereload++/ciehpookapcdlakedibajeccomagbfab |
Deskripsi | Watches a port and reloads the page if needed. |
Ukuran File | 16.46 KB |
Jumlah Instalasi | 5,023 |
Versi Saat Ini | 0.0.2 |
Terakhir Diperbarui | 2017-01-09 |
Tanggal Publikasi | 2017-01-09 |
Penilaian | 5.00/5 Total 6 Penilaian |
Pengembang | codePlanet |
Tipe Pembayaran | free |
Bahasa yang Didukung | 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" ] } |