Data Graph

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

Hvad er Data Graph?

Data Graph er en Chrome-udvidelse udviklet af b romney, og dens hovedfunktion er "Creates a visual plot or graph from numerical data on a web page.".

Udvidelsesskærmbilleder

screenshot

Download Data Graph-udvidelses-CRX-fil

Download Data Graph-udvidelsesfiler i crx-format, installer Chrome-udvidelser manuelt i browseren eller del crx-filer med venner for nemt at installere Chrome-udvidelser.

Brugsanvisning til Udvidelsen

                        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                    

Grundlæggende oplysninger om udvidelsen

Navn Data Graph Data Graph
ID pfbdpmafjjljecigflhnpmnpnlicjggg
Officiel URL https://chromewebstore.google.com/detail/data-graph/pfbdpmafjjljecigflhnpmnpnlicjggg
Beskrivelse Creates a visual plot or graph from numerical data on a web page.
Filstørrelse 421 KB
Antal Installationer 113
Nuværende Version 0.1
Senest Opdateret 2018-11-01
Udgivelsesdato 2018-10-27
Udvikler b romney
E-mail [email protected]
Betalingsmetode free
Udvidelseswebsted https://desolate.netlify.com
Understøttede Sprog 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'"
}