DOM to JSON Selector
The tool extracts element details for highlighted component of webpage DOM.
DOM to JSON Selectorคืออะไร?
DOM to JSON Selector เป็นส่วนขยายของ Chrome ที่พัฒนาโดย victor013 และคุณลักษณะหลักของมันคือ "The tool extracts element details for highlighted component of webpage DOM."
ภาพหน้าจอของส่วนขยาย
ดาวน์โหลดไฟล์ CRX ของส่วนขยาย DOM to JSON Selector
ดาวน์โหลดไฟล์ส่วนขยาย 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 |
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" } } |