D3 Deconstructor
This extension allows the user to deconstruct D3 visualizations on a page.
Was ist D3 Deconstructor?
D3 Deconstructor ist eine Chrome-Erweiterung, die von UC Berkeley VisLab entwickelt wurde, und ihr Hauptmerkmal ist "This extension allows the user to deconstruct D3 visualizations on a page.".
Erweiterungsscreenshots
D3 Deconstructor-Erweiterungs-CRX-Datei herunterladen
Laden Sie D3 Deconstructor-Erweiterungsdateien im crx-Format herunter, installieren Sie Chrome-Erweiterungen manuell im Browser oder teilen Sie die crx-Dateien mit Freunden, um Chrome-Erweiterungen einfach zu installieren.
Anleitung zur Verwendung der Erweiterung
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.
Grundlegende Informationen zur Erweiterung
Name | D3 Deconstructor |
ID | papagkpjldglcaifeipgcfkhddlefnkk |
Offizielle URL | https://chromewebstore.google.com/detail/d3-deconstructor/papagkpjldglcaifeipgcfkhddlefnkk |
Beschreibung | This extension allows the user to deconstruct D3 visualizations on a page. |
Dateigröße | 1.92 MB |
Installationsanzahl | 757 |
Aktuelle Version | 1.0.5 |
Letztes Update | 2016-03-13 |
Veröffentlichungsdatum | 2016-03-13 |
Bewertung | 4.00/5 Insgesamt 4 Bewertungen |
Entwickler | UC Berkeley VisLab |
Zahlungsart | free |
Erweiterungswebsite | http://ucbvislab.github.io/d3-deconstructor |
Hilfeseite URL | https://github.com/ucbvislab/d3-deconstructor/issues |
Unterstützte Sprachen | 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\/*" ] } |