Save CSS

Save your CSS and JS modifications in Devtools automatically to local disk.

什么是Save CSS?

Save CSS是由Tomi Mickelsson开发的Chrome扩展程序,该扩展的主要功能是“Save your CSS and JS modifications in Devtools automatically to local disk.”。

扩展截图

screenshot

下载Save CSS扩展crx文件

下载Save CSS扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。

扩展使用说明

                        Save CSS is a Chrome extension that speeds up your web UI development workflow
by automatically saving your CSS and Javascript modifications in Chrome
Developer Tools into the local disk. Eliminate manual copying and pasting of
CSS values from Developer Tools to source files and install this extension.

This extension requires an external script that is written in Python or Ruby. Pick one of them:

Get the python script from: https://raw.github.com/tomimick/chrome-ext-save-css/master/servers/server.py

Alternatively, get the Ruby script from: https://raw.github.com/tomimick/chrome-ext-save-css/master/servers/server.rb

See usage and technical information in author's blog in http://tomicloud.com/2012/04/save-css-chrome-ext                    

扩展基本信息

名称 Save CSS Save CSS
ID mflkegihknjnhmpfnaimpfkjbkelhhkf
官方URL https://chromewebstore.google.com/detail/save-css/mflkegihknjnhmpfnaimpfkjbkelhhkf
简介 Save your CSS and JS modifications in Devtools automatically to local disk.
文件大小 23.44 KB
安装次数 2,667
当前版本 1.0.3
更新时间 2012-08-23
上架时间 2012-08-23
评分 3.86/5 共29次评分
开发者 Tomi Mickelsson
电子邮箱 [email protected]
付费类型 free
扩展官网 http://tomicloud.com
帮助页面URL http://tomicloud.com/2012/04/save-css-chrome-ext
支持的语言 en-US
manifest.json
{
    "update_url": "http:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Save CSS",
    "version": "1.0.3",
    "description": "Save your CSS and JS modifications in Devtools automatically to local disk.",
    "manifest_version": 2,
    "permissions": [
        "http:\/\/*\/*",
        "https:\/\/*\/*"
    ],
    "icons": {
        "16": "icon16.png",
        "128": "icon128.png"
    },
    "devtools_page": "devtools.html",
    "background": {
        "scripts": [
            "bg.js"
        ]
    },
    "minimum_chrome_version": "18"
}