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 파일 다운로드
크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.
확장 프로그램 사용 설명서
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\/*" ] } |