jQuery Unique Selector

Find the unique selector for any element on page.

jQuery Unique Selector란 무엇입니까?

jQuery Unique Selector은(는) https://20paths.com에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Find the unique selector for any element on page."입니다.

확장 프로그램 스크린샷

screenshot

jQuery Unique 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. Highlight the elemt with mouse and for the elements that cannot be accessed with mouse you can pick the parents of any element.

Very useful for quickly getting selector for any element for testing frameworks and writing selector based jQuery code.                    

확장 프로그램 기본 정보

이름 jQuery Unique Selector jQuery Unique Selector
ID cmdmlphjbobhblimniofbnlfkmpcjlgd
공식 URL https://chromewebstore.google.com/detail/jquery-unique-selector/cmdmlphjbobhblimniofbnlfkmpcjlgd
설명 Find the unique selector for any element on page.
파일 크기 80.23 KB
설치 횟수 6,827
현재 버전 0.1.1
최근 업데이트 2015-09-21
출시 날짜 2015-09-21
평점 2.88/5 총 33 개의 평점
개발자 https://20paths.com
이메일 [email protected]
결제 유형 free
개인정보 보호 정책 페이지 URL https://20paths.com/privacy
지원되는 언어 en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "jQuery Unique Selector",
    "version": "0.1.1",
    "description": "Find the unique selector for any element on page.",
    "background": {
        "scripts": [
            "background.js"
        ],
        "persistent": true
    },
    "browser_action": {
        "default_icon": "css_selector_icon_128.png",
        "default_title": "Click to start"
    },
    "icons": {
        "128": "css_selector_icon_128.png",
        "48": "css_selector_icon_48.png",
        "16": "css_selector_icon_16.png"
    },
    "content_scripts": [
        {
            "matches": [
                "http:\/\/*\/*",
                "https:\/\/*\/*"
            ],
            "css": [],
            "js": [
                "js\/jquery.js",
                "js\/jquery.hotkeys.js",
                "\/js\/jquery.hoverIntent.js",
                "\/src\/dom-selector.js",
                "\/src\/highlighter.js",
                "\/src\/jquery.ct.js",
                "\/js\/main.js"
            ]
        }
    ],
    "web_accessible_resources": [
        "**.css",
        "**.html",
        "**.js",
        "**.png",
        "**.gif",
        "**.map"
    ],
    "permissions": [
        "activeTab"
    ],
    "manifest_version": 2,
    "content_security_policy": "script-src 'self' 'unsafe-eval'; object-src 'self'"
}