Reload CSS
A developer tool that adds a button to reload only css stylesheets.
Reload CSSคืออะไร?
Reload CSS เป็นส่วนขยายของ Chrome ที่พัฒนาโดย https://richard.parnaby-king.co.uk และคุณลักษณะหลักของมันคือ "A developer tool that adds a button to reload only css stylesheets."
ภาพหน้าจอของส่วนขยาย
ดาวน์โหลดไฟล์ CRX ของส่วนขยาย Reload CSS
ดาวน์โหลดไฟล์ส่วนขยาย Reload CSS ในรูปแบบ crx และติดตั้งส่วนขยาย Chrome ด้วยตนเองในเบราว์เซอร์หรือแชร์ไฟล์ crx กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย Chrome อย่างง่ายดาย
คำแนะนำในการใช้ส่วนขยาย
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`
ข้อมูลพื้นฐานของส่วนขยาย
ชื่อ | Reload CSS |
ID | ojbbeapndipcgcjgmlelgbgmmalhjkef |
URL อย่างเป็นทางการ | https://chromewebstore.google.com/detail/reload-css/ojbbeapndipcgcjgmlelgbgmmalhjkef |
คำอธิบาย | A developer tool that adds a button to reload only css stylesheets. |
ขนาดไฟล์ | 106 KB |
จำนวนการติดตั้ง | 97 |
เวอร์ชันปัจจุบัน | 1 |
อัปเดตครั้งล่าสุด | 2016-03-10 |
วันที่เผยแพร่ | 2016-03-10 |
คะแนน | 4.00/5 รวมทั้งหมด 1 คะแนน |
ผู้พัฒนา | https://richard.parnaby-king.co.uk |
ประเภทการชำระเงิน | free |
เว็บไซต์ส่วนขยาย | https://github.com/richard-parnaby-king/Reload-CSS |
ภาษาที่รองรับ | 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 } } |