Find Selector

Javascript selector to quickly find elements on the page.

Find Selector란 무엇입니까?

Find Selector은(는) AdsPower에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Javascript selector to quickly find elements on the page."입니다.

확장 프로그램 스크린샷

screenshot
screenshot
screenshot
screenshot
screenshot
screenshot

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

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

확장 프로그램 사용 설명서

                        Easily and quickly find the JavaScript object of the only CSS selector of the page DOM element! No need to understand the code structure of the page, easy and efficient!
It is a good tool for AdsPower RPA robot creation process!

1. Turn on the search mode, and the page will display the corresponding semantics of the element
2. Shortcut key (Ctrl+Shift+S) to copy the selector of the current floating element
3. Paste the selector

Windows shortcut keys use:

Start/stop search mode: Ctrl + Shift + E
Quick exit: Ctrl + Shift + Z
Copy selector: Ctrl + Shift + S
Hide the prompt box: Alt + C

Mac shortcut keys use:

Start/stop search mode: Command + Shift + E
Quick exit: Command + Shift + Z
Copy selector: Command + E
Hide the prompt box: Ctrl + C

It is very useful for quickly obtaining any element selector for testing frameworks (such as Selenium/Puppeteer).                    

확장 프로그램 기본 정보

이름 Find Selector Find Selector
ID bkbofjphmlieeijckncaopohipgminhc
공식 URL https://chromewebstore.google.com/detail/find-selector/bkbofjphmlieeijckncaopohipgminhc
설명 Javascript selector to quickly find elements on the page.
파일 크기 62.08 KB
설치 횟수 3,327
현재 버전 0.0.2
최근 업데이트 2021-06-16
출시 날짜 2021-05-13
평점 5.00/5 총 3 개의 평점
개발자 AdsPower
이메일 [email protected]
결제 유형 free
확장 프로그램 웹 사이트 https://www.adspower.net?code=cdyhqt&source=chrome_ext
개인정보 보호 정책 페이지 URL https://www.adspower.net
지원되는 언어 en,zh-CN
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "version": "0.0.2",
    "manifest_version": 2,
    "default_locale": "en",
    "short_name": "find-selector",
    "name": "__MSG_ext_name__",
    "description": "__MSG_ext_description__",
    "permissions": [
        "contextMenus",
        "clipboardWrite"
    ],
    "homepage_url": "https:\/\/www.adspower.net",
    "offline_enabled": true,
    "browser_action": {
        "default_popup": "popup\/popup.html",
        "default_title": "__MSG_ext_name__"
    },
    "background": {
        "scripts": [
            "libs\/background.js"
        ]
    },
    "content_scripts": [
        {
            "css": [
                "popup\/style.css"
            ],
            "matches": [
                "*:\/\/*\/*"
            ],
            "js": [
                "libs\/content.js"
            ]
        }
    ],
    "icons": {
        "128": "img\/icon_128.png",
        "16": "img\/icon_16.png",
        "48": "img\/icon_48.png"
    },
    "commands": {
        "get_selector": {
            "suggested_key": {
                "default": "Ctrl+Shift+S",
                "mac": "Command+E"
            },
            "description": "-"
        },
        "find_selector": {
            "suggested_key": {
                "default": "Ctrl+Shift+E",
                "mac": "Command+Shift+E"
            },
            "description": "-"
        },
        "find_selector_esc": {
            "suggested_key": {
                "default": "Ctrl+Shift+Z",
                "mac": "Command+Shift+Z"
            },
            "description": "-"
        },
        "find_selector_hide": {
            "suggested_key": {
                "default": "Alt+C",
                "mac": "MacCtrl+C"
            },
            "description": "-"
        }
    }
}