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.」です。

拡張機能のスクリーンショット

screenshot

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 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\/*"
    ]
}