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.”。
擴展截圖
下載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 |
ID | mflkegihknjnhmpfnaimpfkjbkelhhkf |
官方網址 | 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" } |