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文件
下載DOM to JSON Selector擴展crx格式的文件,手動將Chrome擴充功能安裝到瀏覽器中,也可以將crx文件分享給朋友,輕鬆安裝Chrome擴充功能。
擴展使用說明
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 |
官方網址 | 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" } } |