Reload CSS
A developer tool that adds a button to reload only css stylesheets.
Reload CSS là gì?
Reload CSS là một tiện ích mở rộng Chrome được phát triển bởi https://richard.parnaby-king.co.uk, và tính năng chính của nó là "A developer tool that adds a button to reload only css stylesheets.".
Ả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 Reload CSS
Tải xuống các tệp mở rộng Reload CSS 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
A developer tool that adds a button to reload only css stylesheets. It does this by appending a timestamp to the css file path, e.g. `/path/to/file.css` into `/path/to/file.css?7123654789`
Thông Tin Cơ Bản về Tiện Ích Mở Rộng
Tên | Reload CSS |
ID | ojbbeapndipcgcjgmlelgbgmmalhjkef |
URL Chính Thức | https://chromewebstore.google.com/detail/reload-css/ojbbeapndipcgcjgmlelgbgmmalhjkef |
Mô tả | A developer tool that adds a button to reload only css stylesheets. |
Kích Thước Tệp | 106 KB |
Số Lần Cài Đặt | 97 |
Phiên Bản Hiện Tại | 1 |
Cập Nhật Lần Cuối | 2016-03-10 |
Ngày Phát Hành | 2016-03-10 |
Đánh Giá | 4.00/5 Tổng số 1 Đánh Giá |
Nhà Phát Triển | https://richard.parnaby-king.co.uk |
Loại Thanh Toán | free |
Trang Web Mở Rộng | https://github.com/richard-parnaby-king/Reload-CSS |
Ngôn Ngữ Được Hỗ Trợ | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "Reload CSS", "short_name": "Reload CSS", "description": "A developer tool that adds a button to reload only css stylesheets.", "version": "1", "author": "Richard Parnaby-King", "homepage_url": "https:\/\/github.com\/richard-parnaby-king\/Reload-CSS", "icons": { "128": "icon.png" }, "browser_action": { "default_icon": "icon.png" }, "permissions": [ "tabs", "http:\/\/*\/*", "https:\/\/*\/*" ], "background": { "scripts": [ "background.js" ], "persistent": false } } |