CSS Dig
Collect and analyze CSS.
CSS Dig란 무엇입니까?
CSS Dig은(는) https://cssdig.com에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Collect and analyze CSS."입니다.
확장 프로그램 스크린샷
CSS Dig 확장 프로그램 CRX 파일 다운로드
크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.
확장 프로그램 사용 설명서
CSS Dig finds and groups stylesheets and style blocks on most websites, providing an easy way to analyze the code and plan refactors. Properties: Take a look at all your CSS properties, their frequency and variations. Have too many shades of blue? Inconsistencies often means confusion for your developers and irregularities for your end users. Selectors & Specificity: Are your selectors long? Using lots of IDs? Specificity wars are frustrating and piling on new CSS will only make the situation worse. Find potential problem areas and make a plan to fix.
확장 프로그램 기본 정보
이름 | CSS Dig |
ID | lpnhmlhomomelfkcjnkcacofhmggjmco |
공식 URL | https://chromewebstore.google.com/detail/css-dig/lpnhmlhomomelfkcjnkcacofhmggjmco |
설명 | Collect and analyze CSS. |
파일 크기 | 175 KB |
설치 횟수 | 12,631 |
현재 버전 | 1.2.7 |
최근 업데이트 | 2019-05-08 |
출시 날짜 | 2019-05-07 |
평점 | 2.86/5 총 51 개의 평점 |
개발자 | https://cssdig.com |
결제 유형 | free |
확장 프로그램 웹 사이트 | http://cssdig.com |
지원되는 언어 | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "CSS Dig", "description": "Collect and analyze CSS.", "version": "1.2.7", "permissions": [ "activeTab" ], "background": { "scripts": [ "js\/background.js" ], "persistent": false }, "icons": { "16": "i\/icon16.png", "48": "i\/icon48.png", "128": "i\/icon128.png" }, "browser_action": { "default_icon": { "19": "i\/icon19.png", "38": "i\/icon38.png" }, "default_title": "CSS Dig" }, "content_scripts": [ { "matches": [ "*:\/\/*\/*" ], "js": [ "js\/jquery.min.js" ] } ], "web_accessible_resources": [ "html\/dig.html", "i\/icon48.png", "css\/cssdig.css", "js\/cssdig.js" ] } |