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 파일 다운로드
크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.
확장 프로그램 사용 설명서
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 |
공식 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" } |