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 |
| 官方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
}
} | |