D3 Deconstructor
This extension allows the user to deconstruct D3 visualizations on a page.
什么是D3 Deconstructor?
D3 Deconstructor是由UC Berkeley VisLab开发的Chrome扩展程序,该扩展的主要功能是“This extension allows the user to deconstruct D3 visualizations on a page.”。
扩展截图
下载D3 Deconstructor扩展crx文件
下载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.
扩展基本信息
名称 | D3 Deconstructor |
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\/*" ] } |