LiveReload++
Watches a port and reloads the page if needed.
LiveReload++ là gì?
LiveReload++ là một tiện ích mở rộng Chrome được phát triển bởi codePlanet, và tính năng chính của nó là "Watches a port and reloads the page if needed.".
Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng
Tải xuống tệp CRX của tiện ích mở rộng LiveReload++
Tải xuống các tệp mở rộng LiveReload++ dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.
Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng
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.
Thông Tin Cơ Bản về Tiện Ích Mở Rộng
Tên | LiveReload++ |
ID | ciehpookapcdlakedibajeccomagbfab |
URL Chính Thức | https://chromewebstore.google.com/detail/livereload++/ciehpookapcdlakedibajeccomagbfab |
Mô tả | Watches a port and reloads the page if needed. |
Kích Thước Tệp | 16.46 KB |
Số Lần Cài Đặt | 5,023 |
Phiên Bản Hiện Tại | 0.0.2 |
Cập Nhật Lần Cuối | 2017-01-09 |
Ngày Phát Hành | 2017-01-09 |
Đánh Giá | 5.00/5 Tổng số 6 Đánh Giá |
Nhà Phát Triển | codePlanet |
Loại Thanh Toán | free |
Ngôn Ngữ Được Hỗ Trợ | 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" ] } |