Sniper CSS
Avoid unused CSS styles code in your Web/Apps.
Sniper CSS란 무엇입니까?
Sniper CSS은(는) giustiRo에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Avoid unused CSS styles code in your Web/Apps."입니다.
확장 프로그램 스크린샷
Sniper CSS 확장 프로그램 CRX 파일 다운로드
크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.
확장 프로그램 사용 설명서
Hi Devs! This extension will interact and try to collect all CSS rules of your site, using emulations like Dark and Light themes, going through different media breakpoints, switching User Agents and so on. It will be being improved with time! Try it! Supporting: -Multiple Breakpoints -Dark and Light Themes -Multiple User-Agents -Node's Pseudo-States -Keyframes -Other At-rules like prefers-motion, pointer, etc. -On-load hook related rules. Roadmap: -To add some user inputs preferences and apply them to generated CSS file.
확장 프로그램 기본 정보
이름 | Sniper CSS |
ID | kknjnehpgiaeljeilemamjjiopemockp |
공식 URL | https://chromewebstore.google.com/detail/sniper-css/kknjnehpgiaeljeilemamjjiopemockp |
설명 | Avoid unused CSS styles code in your Web/Apps. |
파일 크기 | 68.29 KB |
설치 횟수 | 261 |
현재 버전 | 1.1 |
최근 업데이트 | 2023-04-19 |
출시 날짜 | 2023-04-12 |
평점 | 4.67/5 총 3 개의 평점 |
개발자 | giustiRo |
이메일 | [email protected] |
결제 유형 | free |
지원되는 언어 | en-US |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "Sniper CSS", "version": "1.1", "description": "Avoid unused CSS styles code in your Web\/Apps.", "manifest_version": 3, "permissions": [ "tabs", "activeTab", "scripting", "debugger" ], "background": { "service_worker": "background.js", "type": "module" }, "action": { "default_popup": "index.html", "default_title": "Optimize CSS for this site!", "default_icon": { "16": "assets\/16.png", "24": "assets\/24.png", "32": "assets\/32.png", "64": "assets\/64.png", "100": "assets\/100.png" } }, "host_permissions": [ "http:\/\/*\/", "https:\/\/*\/" ] } |