Data Graph

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

Was ist Data Graph?

Data Graph ist eine Chrome-Erweiterung, die von b romney entwickelt wurde, und ihr Hauptmerkmal ist "Creates a visual plot or graph from numerical data on a web page.".

Erweiterungsscreenshots

screenshot

Data Graph-Erweiterungs-CRX-Datei herunterladen

Laden Sie Data Graph-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

                        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                    

Grundlegende Informationen zur Erweiterung

Name Data Graph Data Graph
ID pfbdpmafjjljecigflhnpmnpnlicjggg
Offizielle URL https://chromewebstore.google.com/detail/data-graph/pfbdpmafjjljecigflhnpmnpnlicjggg
Beschreibung Creates a visual plot or graph from numerical data on a web page.
Dateigröße 421 KB
Installationsanzahl 113
Aktuelle Version 0.1
Letztes Update 2018-11-01
Veröffentlichungsdatum 2018-10-27
Entwickler b romney
E-Mail [email protected]
Zahlungsart free
Erweiterungswebsite https://desolate.netlify.com
Unterstützte Sprachen 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'"
}