Data Graph

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

什麼是Data Graph?

Data Graph是由b romney開發的Chrome擴展程式,該擴展的主要功能是“Creates a visual plot or graph from numerical data on a web page.”。

擴展截圖

screenshot

下載Data Graph擴展crx文件

下載Data Graph擴展crx格式的文件,手動將Chrome擴充功能安裝到瀏覽器中,也可以將crx文件分享給朋友,輕鬆安裝Chrome擴充功能。

擴展使用說明

                        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                    

擴展基本資訊

名稱 Data Graph Data Graph
ID pfbdpmafjjljecigflhnpmnpnlicjggg
官方網址 https://chromewebstore.google.com/detail/data-graph/pfbdpmafjjljecigflhnpmnpnlicjggg
簡介 Creates a visual plot or graph from numerical data on a web page.
檔案大小 421 KB
安裝次數 113
目前版本 0.1
更新時間 2018-11-01
上架時間 2018-10-27
開發者 b romney
電子郵箱 [email protected]
付費類型 free
擴展官網 https://desolate.netlify.com
支援的語言 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'"
}