D3 Deconstructor
This extension allows the user to deconstruct D3 visualizations on a page.
D3 Deconstructorคืออะไร?
D3 Deconstructor เป็นส่วนขยายของ Chrome ที่พัฒนาโดย UC Berkeley VisLab และคุณลักษณะหลักของมันคือ "This extension allows the user to deconstruct D3 visualizations on a page."
ภาพหน้าจอของส่วนขยาย
ดาวน์โหลดไฟล์ CRX ของส่วนขยาย D3 Deconstructor
ดาวน์โหลดไฟล์ส่วนขยาย D3 Deconstructor ในรูปแบบ crx และติดตั้งส่วนขยาย Chrome ด้วยตนเองในเบราว์เซอร์หรือแชร์ไฟล์ crx กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย Chrome อย่างง่ายดาย
คำแนะนำในการใช้ส่วนขยาย
The D3 Deconstructor is a Google Chrome extension for extracting data from D3.js visualizations. D3 binds data to DOM elements when building a visualization. Our D3 Deconstructor extracts this data and the visual mark attributes (such as position, width, height, and color) for each element in a D3 visualization.
The D3 Deconstructor was developed in the VisLab at UC Berkeley. We also used the results of deconstruction to enable restyling of D3 visualizations. You can find the paper here: http://vis.berkeley.edu/papers/d3decon. ข้อมูลพื้นฐานของส่วนขยาย
| ชื่อ | |
| ID | papagkpjldglcaifeipgcfkhddlefnkk |
| URL อย่างเป็นทางการ | https://chromewebstore.google.com/detail/d3-deconstructor/papagkpjldglcaifeipgcfkhddlefnkk |
| คำอธิบาย | This extension allows the user to deconstruct D3 visualizations on a page. |
| ขนาดไฟล์ | 1.92 MB |
| จำนวนการติดตั้ง | 757 |
| เวอร์ชันปัจจุบัน | 1.0.5 |
| อัปเดตครั้งล่าสุด | 2016-03-13 |
| วันที่เผยแพร่ | 2016-03-13 |
| คะแนน | 4.00/5 รวมทั้งหมด 4 คะแนน |
| ผู้พัฒนา | UC Berkeley VisLab |
| ประเภทการชำระเงิน | free |
| เว็บไซต์ส่วนขยาย | http://ucbvislab.github.io/d3-deconstructor |
| URL หน้าช่วยเหลือ | https://github.com/ucbvislab/d3-deconstructor/issues |
| ภาษาที่รองรับ | en |
| manifest.json | |
{
"update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
"manifest_version": 2,
"name": "D3 Deconstructor",
"description": "This extension allows the user to deconstruct D3 visualizations on a page.",
"version": "1.0.5",
"icons": {
"16": "decon-icon.png",
"128": "decon-icon.png"
},
"content_scripts": [
{
"matches": [
"file:\/\/\/*\/*",
"http:\/\/*\/*",
"https:\/\/*\/*"
],
"css": [
"content.css"
],
"js": [
"js\/content.js",
"node_modules\/jquery\/dist\/jquery.js"
]
}
],
"background": {
"scripts": [
"js\/background.js"
]
},
"browser_action": {
"default_icon": "decon-icon.png",
"default_title": "D3 Deconstructor"
},
"permissions": [
"tabs",
"activeTab",
"contextMenus"
],
"web_accessible_resources": [
"node_modules\/*",
"dist\/*",
"js\/*"
]
} | |