Save CSS
Save your CSS and JS modifications in Devtools automatically to local disk.
What is Save CSS?
Save CSS is a Chrome extension developed by Tomi Mickelsson, and its main feature is "Save your CSS and JS modifications in Devtools automatically to local disk.".
Extension Screenshots
Download Save CSS Extension CRX File
Download Save CSS extension files in crx format, manually install Chrome extensions in the browser, or share the crx files with friends to easily install Chrome extensions.
Extension Usage Instructions
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
Extension Basic Information
Name | Save CSS |
ID | mflkegihknjnhmpfnaimpfkjbkelhhkf |
Official URL | https://chromewebstore.google.com/detail/save-css/mflkegihknjnhmpfnaimpfkjbkelhhkf |
Description | Save your CSS and JS modifications in Devtools automatically to local disk. |
File Size | 23.44 KB |
Installation Count | 2,667 |
Current Version | 1.0.3 |
Last Updated | 2012-08-23 |
Publish Date | 2012-08-23 |
Rating | 3.86/5 Total 29 Ratings |
Developer | Tomi Mickelsson |
[email protected] | |
Payment Type | free |
Extension Website | http://tomicloud.com |
Help Page URL | http://tomicloud.com/2012/04/save-css-chrome-ext |
Supported Languages | 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" } |