DOM to JSON Converter
The tool extracts element details (name, url, id, depth, value, alt, src and href) from webpage DOM. Works for iframes, too!
DOM to JSON Converter là gì?
DOM to JSON Converter là một tiện ích mở rộng Chrome được phát triển bởi victor013, và tính năng chính của nó là "The tool extracts element details (name, url, id, depth, value, alt, src and href) from webpage DOM. Works for iframes, too!".
Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng
Tải xuống tệp CRX của tiện ích mở rộng DOM to JSON Converter
Tải xuống các tệp mở rộng DOM to JSON Converter dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.
Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng
The "DOM to JSON Converter" extracts limited information about all nodes (such as node name, it's depth in the tree, id, src, href, alt and it's text content) from a website's DOM (Document Object Model). The nodes are all sequentially inserted into an array which is then downloaded as a JSON. The tool help users visualize and understand a website's DOM structure.
Thông Tin Cơ Bản về Tiện Ích Mở Rộng
Tên | DOM to JSON Converter |
ID | eipknbkoepfidigecmlofhmhlecmhfcj |
URL Chính Thức | https://chromewebstore.google.com/detail/dom-to-json-converter/eipknbkoepfidigecmlofhmhlecmhfcj |
Mô tả | The tool extracts element details (name, url, id, depth, value, alt, src and href) from webpage DOM. Works for iframes, too! |
Kích Thước Tệp | 18.23 KB |
Số Lần Cài Đặt | 428 |
Phiên Bản Hiện Tại | 1.1 |
Cập Nhật Lần Cuối | 2017-08-16 |
Ngày Phát Hành | 2017-08-15 |
Đánh Giá | 5.00/5 Tổng số 1 Đánh Giá |
Nhà Phát Triển | victor013 |
Loại Thanh Toán | free |
Ngôn Ngữ Được Hỗ Trợ | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "DOM to JSON Converter", "version": "1.1", "description": "The tool extracts element details (name, url, id, depth, value, alt, src and href) from webpage DOM. Works for iframes, too!", "browser_action": { "default_title": "Download DOM as JSON" }, "background": { "scripts": [ "background.js" ] }, "offline_enabled": false, "permissions": [ "activeTab" ], "icons": { "16": "icons\/icon16.png", "32": "icons\/icon32.png", "64": "icons\/icon64.png", "128": "icons\/icon128.png" } } |