Data Graph

Creates a visual plot or graph from numerical data on a web page.

What is Data Graph?

Data Graph is a Chrome extension developed by b romney, and its main feature is "Creates a visual plot or graph from numerical data on a web page.".

Extension Screenshots

screenshot

Download Data Graph Extension CRX File

Download Data Graph extension files in crx format, manually install Chrome extensions in the browser, or share the crx files with friends to easily install Chrome extensions.

Extension Usage Instructions

                        Creates a visual plot or graph from numerical data on a web page.  At this time highlighted / selected text and HTML table elements are supported.  This is really just getting started with development; feel free to submit any feedback on the form found at https://desolate.netlify.com                    

Extension Basic Information

Name Data Graph Data Graph
ID pfbdpmafjjljecigflhnpmnpnlicjggg
Official URL https://chromewebstore.google.com/detail/data-graph/pfbdpmafjjljecigflhnpmnpnlicjggg
Description Creates a visual plot or graph from numerical data on a web page.
File Size 421 KB
Installation Count 113
Current Version 0.1
Last Updated 2018-11-01
Publish Date 2018-10-27
Developer b romney
Email [email protected]
Payment Type free
Extension Website https://desolate.netlify.com
Supported Languages en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Data Graph",
    "description": "Creates a visual plot or graph from numerical data on a web page.",
    "version": "0.1",
    "manifest_version": 2,
    "background": {
        "scripts": [
            "script.js"
        ]
    },
    "browser_action": {
        "default_title": "Graph Settings",
        "default_icon": "icon.png",
        "default_popup": "graph.html"
    },
    "icons": {
        "16": "icon.png",
        "48": "icon.png",
        "128": "icon.png"
    },
    "permissions": [
        "activeTab",
        "contextMenus",
        "*:\/\/*\/*"
    ],
    "content_scripts": [
        {
            "matches": [
                "*:\/\/*\/*"
            ],
            "js": [
                "graph.js"
            ]
        }
    ],
    "content_security_policy": "script-src 'self' 'unsafe-eval' https:\/\/www.google.com\/; object-src 'self'"
}