generate css-selector
Generate unique CSS selectors for a DOM element
generate css-selector란 무엇입니까?
generate css-selector은(는) sudharma.puranik에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Generate unique CSS selectors for a DOM element"입니다.
확장 프로그램 스크린샷
generate css-selector 확장 프로그램 CRX 파일 다운로드
크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.
확장 프로그램 사용 설명서
The main purpose of this extension is to generate a unique CSS-Selector for a given HTML DOM Element. It may so happen that that if the element has no attributes , it generates on the nth-child which may give multiple paths. This is my first extension and I am hoping for improvements for this.
If the right click is disabled on a site, for anchors you can right click and select generate css-selector on browser toolbar
Below are few known issues which I would fix in long run.
1. disabling of this extension. Explicitly you can disable with chrome extensions.
Let me know if anything is not relevant or which may be missing. 확장 프로그램 기본 정보
| 이름 | |
| ID | pofboiihgopdkmpadindkglopckagdbm |
| 공식 URL | https://chrome.google.com/webstore/detail/generate-css-selector/pofboiihgopdkmpadindkglopckagdbm |
| 설명 | Generate unique CSS selectors for a DOM element |
| 파일 크기 | 90.75 KB |
| 설치 횟수 | 41 |
| 현재 버전 | 1.1 |
| 최근 업데이트 | 2014-03-11 |
| 출시 날짜 | 2014-03-11 |
| 평점 | 1.00/5 총 4 개의 평점 |
| 개발자 | sudharma.puranik |
| 결제 유형 | free |
| 지원되는 언어 | en-GB |
| manifest.json | |
{
"update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
"name": "generate css-selector",
"description": "Generate unique CSS selectors for a DOM element",
"version": "1.1",
"permissions": [
"activeTab",
"contextMenus",
"notifications"
],
"background": {
"page": "background.html"
},
"content_scripts": [
{
"matches": [
"http:\/\/*\/*",
"https:\/\/*\/*",
"file:\/\/\/*\/*"
],
"js": [
"jquery.js",
"elementLocator.js",
"content_script.js"
],
"css": [
"core.css"
]
}
],
"web_accessible_resources": [
"jquery-2.0.3.min.map"
],
"manifest_version": 2,
"browser_action": {
"default_icon": {
"19": "icon-arrow.png"
},
"default_title": "Path Generator"
}
} | |