SnapCss
SnapCss - Realtime editing style in a snap!
SnapCss란 무엇입니까?
SnapCss은(는) Trần Quang Hiệp에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "SnapCss - Realtime editing style in a snap!"입니다.
확장 프로그램 스크린샷
SnapCss 확장 프로그램 CRX 파일 다운로드
크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.
확장 프로그램 사용 설명서
Realtime editing style in a snap! Imagine no more file saving or page reloading just to see how single update affects web page, realtime update style in browser immediately, as you type... How many time you can save? how fast we can build our application? No need to waiting for JS framework build time to see your new style apply. Just type your new style and see the magic happen. Base on this idea [Livestyle](http://livestyle.io/). I'm writing an extension for VS code and Chrome that can help Frontend Developer can style faster. It call *SnapCss* that can updates in realtime CSS from VSCode to browser immediately, as you type. No more file saving or page reloading just to see how single update affects web page. Homepage: https://github.com/xanhtool/SnapCss ------------------------------------------------------------------------------------------ contact me on email: [email protected] my facebook: https://www.facebook.com/hiepsieuviet skype: live:hiepxanh
확장 프로그램 기본 정보
이름 | SnapCss |
ID | fdehldbleadjkgomndkhnciddeiohjmf |
공식 URL | https://chromewebstore.google.com/detail/snapcss/fdehldbleadjkgomndkhnciddeiohjmf |
설명 | SnapCss - Realtime editing style in a snap! |
파일 크기 | 185 KB |
설치 횟수 | 30 |
현재 버전 | 0.0.5 |
최근 업데이트 | 2020-02-20 |
출시 날짜 | 2020-02-20 |
개발자 | Trần Quang Hiệp |
이메일 | [email protected] |
결제 유형 | free |
확장 프로그램 웹 사이트 | https://youtu.be/W-hWhR5GX_c |
도움말 페이지 URL | https://youtu.be/W-hWhR5GX_c |
지원되는 언어 | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "SnapCss", "short_name": "SnapCss", "version": "0.0.5", "description": "SnapCss - Realtime editing style in a snap!", "permissions": [ "activeTab", "declarativeContent", "storage" ], "background": { "scripts": [ "background-scripts\/background.js" ], "persistent": false }, "options_page": "page-action-scripts\/options.html", "page_action": { "default_popup": "page-action-scripts\/popup.html", "default_icon": { "16": "logo-only\/[email protected]", "32": "logo-only\/[email protected]", "48": "logo-only\/[email protected]", "128": "logo-only\/[email protected]" } }, "content_scripts": [ { "run_at": "document_idle", "matches": [ "http:\/\/*.localhost\/*" ], "css": [ "myStyles.css" ], "js": [ "content-scripts\/libs\/socket.io.js", "content-scripts\/socket-controller\/socket-controller.js", "content-scripts\/file-modifer\/file-modifer.js", "content-scripts\/content-messenger\/content-messenger.js" ] } ], "icons": { "16": "logo-only\/[email protected]", "32": "logo-only\/[email protected]", "48": "logo-only\/[email protected]", "128": "logo-only\/[email protected]" }, "manifest_version": 2, "content_security_policy": "script-src 'self' https:\/\/ssl.google-analytics.com; object-src 'self'" } |