Selectify
Alt+click any element to generate its optimum jquery selector path.
Selectify란 무엇입니까?
Selectify은(는) Test Amanda Olsen에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Alt+click any element to generate its optimum jquery selector path."입니다.
확장 프로그램 스크린샷
Selectify 확장 프로그램 CRX 파일 다운로드
크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.
확장 프로그램 사용 설명서
If you are writing jQuery, you frequently decide and write the optimum jquery selector for your need. However, the rules for optimizing a jQuery selector are relatively easy and can be automated. That's what this extension is for. Instead of having to step through the DOM, find the ID which could be anywhere, and try to remember again exactly what the rules are for optimizing the jQuery selector, this tool builds the selector and copies it to your clipboard. Done! Voila! Additionally, the tool tells you how many elements on the page that selector calls so you instantly know whether the selector is unique (calls only one element) or not (calls many elements). The readme.md file delineates the logic used. Primary source behind the logic is: https://learn.jquery.com/performance/optimize-selectors/
확장 프로그램 기본 정보
이름 | Selectify |
ID | lpnjpfcjoodgemnipmlaobngfndgojki |
공식 URL | https://chromewebstore.google.com/detail/selectify/lpnjpfcjoodgemnipmlaobngfndgojki |
설명 | Alt+click any element to generate its optimum jquery selector path. |
파일 크기 | 50.32 KB |
설치 횟수 | 1,253 |
현재 버전 | 2.3 |
최근 업데이트 | 2016-02-23 |
출시 날짜 | 2016-02-23 |
평점 | 2.85/5 총 13 개의 평점 |
개발자 | Test Amanda Olsen |
이메일 | [email protected] |
결제 유형 | free |
지원되는 언어 | en-US |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "Selectify", "description": "Alt+click any element to generate its optimum jquery selector path.", "version": "2.3", "author": "Amanda Olsen", "minimum_chrome_version": "10.0", "icons": { "16": "images\/icon16.png", "48": "images\/icon48.png", "128": "images\/icon128.png" }, "web_accessible_resources": [ "images\/*.png" ], "content_scripts": [ { "matches": [ "http:\/\/*\/*", "https:\/\/*\/*" ], "css": [ "main.css" ], "js": [ "jquery-1.11.3.min.js", "main.js" ] } ] } |