Copy Css Selector

Extends the Developer Tools and context menu, adding a sidebar that displays the css path of DOM element.

Copy Css Selector란 무엇입니까?

Copy Css Selector은(는) Alexander Chermyanin (flamencist)에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Extends the Developer Tools and context menu, adding a sidebar that displays the css path of DOM element."입니다.

확장 프로그램 스크린샷

screenshot
screenshot

Copy Css Selector 확장 프로그램 CRX 파일 다운로드

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

확장 프로그램 사용 설명서

                        Find the unique selector for any element on page.

It will find an optimal selector that’s unique to the element selected. Right click on the element with mouse and select Copy Css Selector menu item into buffer, so you can past copied selector to any text editor.

Very useful for quickly getting selector for any element for testing frameworks like as Selenium.                    

확장 프로그램 기본 정보

이름 Copy Css Selector Copy Css Selector
ID kemkenbgbgodoglfkkejbdcpojnodnkg
공식 URL https://chromewebstore.google.com/detail/copy-css-selector/kemkenbgbgodoglfkkejbdcpojnodnkg
설명 Extends the Developer Tools and context menu, adding a sidebar that displays the css path of DOM element.
파일 크기 19.31 KB
설치 횟수 10,000
현재 버전 0.5.0.3
최근 업데이트 2018-10-20
출시 날짜 2018-10-20
평점 3.91/5 총 22 개의 평점
개발자 Alexander Chermyanin (flamencist)
이메일 [email protected]
결제 유형 free
확장 프로그램 웹 사이트 https://github.com/flamencist/CopyCssSelector
도움말 페이지 URL https://github.com/flamencist/CopyCssSelector/issues
지원되는 언어 en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Copy Css Selector",
    "short_name": "CopyCssSelector",
    "version": "0.5.0.3",
    "description": "Extends the Developer Tools and context menu, adding a sidebar that displays the css path of DOM element.",
    "devtools_page": "devtools.html",
    "background": {
        "page": "background.html"
    },
    "manifest_version": 2,
    "icons": {
        "16": "icons\/icon16.png",
        "48": "icons\/icon48.png",
        "128": "icons\/icon128.png"
    },
    "author": "Alexander Chermyanin (flamencist)",
    "offline_enabled": true,
    "permissions": [
        "contextMenus",
        "activeTab",
        "clipboardWrite"
    ],
    "content_scripts": [
        {
            "all_frames": true,
            "matches": [
                "*:\/\/*\/*"
            ],
            "js": [
                "js\/selector-generator.js",
                "js\/content.js"
            ],
            "css": [
                "css\/style.css"
            ]
        }
    ]
}