CSS Selector Finder for Chrome Devtools

Generate CSS Selectors from the Chrome Devtools Elements Panel

CSS Selector Finder for Chrome Devtools란 무엇입니까?

CSS Selector Finder for Chrome Devtools은(는) https://abbadata.com에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Generate CSS Selectors from the Chrome Devtools Elements Panel"입니다.

확장 프로그램 스크린샷

screenshot
screenshot
screenshot
screenshot

CSS Selector Finder for Chrome Devtools 확장 프로그램 CRX 파일 다운로드

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

확장 프로그램 사용 설명서

                        Easy to use Devtools sidebar that aids in finding unique CSS selectors.

- Unique CSS selectors are continuously generated as the selection is changed in the Devtools Elements panel
- Highly configurable. Settings can easily be changed interactively and results can be seen immediately.
  - Enable/Disable usage of IDs, Class names, and Tag names for selector generation
  - Filter out specific values of IDs, Class names, and Tag names
  - Use custom attribute names and attribute name/value pairs
  - Various settings to control robustness and optimization of selectors                    

확장 프로그램 기본 정보

이름 CSS Selector Finder for Chrome Devtools CSS Selector Finder for Chrome Devtools
ID mbeedbpphndkijipfcklhlgmoolapiml
공식 URL https://chromewebstore.google.com/detail/css-selector-finder-for-c/mbeedbpphndkijipfcklhlgmoolapiml
설명 Generate CSS Selectors from the Chrome Devtools Elements Panel
파일 크기 35.66 KB
설치 횟수 2,746
현재 버전 0.1
최근 업데이트 2020-06-23
출시 날짜 2020-06-23
평점 3.67/5 총 3 개의 평점
개발자 https://abbadata.com
이메일 [email protected]
결제 유형 free
확장 프로그램 웹 사이트 https://abbadata.com/devtools_selector_finder.html
도움말 페이지 URL https://github.com/abbadata/devtools-css-selector
지원되는 언어 en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "short_name": "CSS Selector Finder for Chrome Devtools",
    "name": "CSS Selector Finder for Chrome Devtools",
    "version": "0.1",
    "description": "Generate CSS Selectors from the Chrome Devtools Elements Panel",
    "manifest_version": 2,
    "devtools_page": "devtools.html",
    "background": {
        "scripts": [
            "\/static\/js\/background\/background.js"
        ],
        "persistent": false
    },
    "icons": {
        "16": "abba16.png",
        "48": "abba48.png",
        "128": "abba128.png"
    },
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "js": [
                "\/static\/js\/content_script.js"
            ],
            "run_at": "document_idle",
            "all_frames": true
        }
    ]
}