DOM to JSON Selector
The tool extracts element details for highlighted component of webpage DOM.
DOM to JSON Selector란 무엇입니까?
DOM to JSON Selector은(는) victor013에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "The tool extracts element details for highlighted component of webpage DOM."입니다.
확장 프로그램 스크린샷
DOM to JSON Selector 확장 프로그램 CRX 파일 다운로드
크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.
확장 프로그램 사용 설명서
The "DOM to JSON Selector" is a modified version of the "DOM to JSON Converter" Extension. The selector allows users to choose a specific element. Just click on the extension icon and hover over the webpage. As you hover over an element, it would highlighted. Click on the element you would like to get the DOM-JSON of. The extension would then extract the node name, depth, id, src, href, alt and text content of the selected element and it's children.
확장 프로그램 기본 정보
이름 | DOM to JSON Selector |
ID | mgnnbcacopddmbmikjmhadpchchcekln |
공식 URL | https://chromewebstore.google.com/detail/dom-to-json-selector/mgnnbcacopddmbmikjmhadpchchcekln |
설명 | The tool extracts element details for highlighted component of webpage DOM. |
파일 크기 | 48.55 KB |
설치 횟수 | 384 |
현재 버전 | 1.1 |
최근 업데이트 | 2017-08-16 |
출시 날짜 | 2017-08-15 |
개발자 | victor013 |
결제 유형 | free |
지원되는 언어 | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "DOM to JSON Selector", "version": "1.1", "description": "The tool extracts element details for highlighted component of webpage DOM.", "browser_action": { "default_title": "DOM-JSON Selector" }, "background": { "scripts": [ "background.js" ] }, "content_scripts": [ { "js": [ "js\/jquery-3.2.1.min.js" ], "css": [ "css\/style.css" ], "matches": [ "http:\/\/*\/*", "https:\/\/*\/*" ], "run_at": "document_end" } ], "offline_enabled": false, "permissions": [ "activeTab" ], "web_accessible_resources": [ "css\/*.css", "js\/*.js" ], "icons": { "16": "icons\/icon16.png", "32": "icons\/icon32.png", "64": "icons\/icon64.png", "128": "icons\/icon128.png" } } |