Reload CSS
A developer tool that adds a button to reload only css stylesheets.
什麼是Reload CSS?
Reload CSS是由https://richard.parnaby-king.co.uk開發的Chrome擴展程式,該擴展的主要功能是“A developer tool that adds a button to reload only css stylesheets.”。
擴展截圖
下載Reload CSS擴展crx文件
下載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` 擴展基本資訊
| 名稱 | |
| ID | ojbbeapndipcgcjgmlelgbgmmalhjkef |
| 官方網址 | 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
}
} | |