CSS Used

Get all css rules used by the selected DOM and its descendants.

CSS Used란 무엇입니까?

CSS Used은(는) https://bobscript.com에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Get all css rules used by the selected DOM and its descendants."입니다.

확장 프로그램 스크린샷

screenshot

CSS Used 확장 프로그램 CRX 파일 다운로드

크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.

확장 프로그램 사용 설명서

                        One click to get all the css applied to the selected web element and its descendants.

-- Recent Update --
1. Migrated to Manifest V3.
2. Resources are read from local caches, making it much faster and solves the cross-origin issue.
3. Optimized style parsing in a more efficient way.
4. Dropped support for some outdated CSS, mostly -o- and -ms- prefixed properties.
5. Implemented a new UI powered by Svelte, with some visual tweaks.

-- Known Limit --
1. For CSS rules like ".wrap p{...}", if only "

" is selected, the result ".wrap p{...}" will not apply to "

". Either change the rule to "p{...}" or add a ".wrap" parent in the final HTML. 2. CSS custom properties (variables) and all the style inherit related features are not supported currently.

확장 프로그램 기본 정보

이름 CSS Used CSS Used
ID cdopjfddjlonogibjahpnmjpoangjfff
공식 URL https://chromewebstore.google.com/detail/css-used/cdopjfddjlonogibjahpnmjpoangjfff
설명 Get all css rules used by the selected DOM and its descendants.
파일 크기 164 KB
설치 횟수 66,889
현재 버전 3.0.0
최근 업데이트 2023-01-17
출시 날짜 2019-06-23
평점 4.57/5 총 174 개의 평점
개발자 https://bobscript.com
이메일 [email protected]
결제 유형 free
도움말 페이지 URL https://github.com/painty/CSS-Used-ChromeExt
지원되는 언어 en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "CSS Used",
    "version": "3.0.0",
    "permissions": [
        "tabs"
    ],
    "optional_permissions": [
        "storage"
    ],
    "author": "Bob",
    "icons": {
        "16": "static\/icon\/16.png",
        "48": "static\/icon\/48.png",
        "128": "static\/icon\/128.png"
    },
    "description": "Get all css rules used by the selected DOM and its descendants.",
    "devtools_page": "devtools.html",
    "options_page": "options.html",
    "manifest_version": 3,
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "js": [
                "assets\/content.js"
            ],
            "all_frames": true
        }
    ],
    "action": {
        "default_icon": "static\/icon\/128.png",
        "default_title": "CSS Used For Chrome Devtool",
        "default_popup": "popup.html"
    }
}