Data Graph

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

Apa itu Data Graph?

Data Graph adalah ekstensi Chrome yang dikembangkan oleh b romney, dan fitur utamanya adalah "Creates a visual plot or graph from numerical data on a web page.".

Screenshot Ekstensi

screenshot

Unduh Berkas CRX Ekstensi Data Graph

Unduh file ekstensi Data Graph dalam format crx, pasang ekstensi Chrome secara manual di peramban, atau bagikan file crx dengan teman untuk menginstal ekstensi Chrome dengan mudah.

Petunjuk Penggunaan Ekstensi

                        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                    

Informasi Dasar Ekstensi

Nama Data Graph Data Graph
ID pfbdpmafjjljecigflhnpmnpnlicjggg
URL Resmi https://chromewebstore.google.com/detail/data-graph/pfbdpmafjjljecigflhnpmnpnlicjggg
Deskripsi Creates a visual plot or graph from numerical data on a web page.
Ukuran File 421 KB
Jumlah Instalasi 113
Versi Saat Ini 0.1
Terakhir Diperbarui 2018-11-01
Tanggal Publikasi 2018-10-27
Pengembang b romney
Email [email protected]
Tipe Pembayaran free
Situs Ekstensi https://desolate.netlify.com
Bahasa yang Didukung 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'"
}