Data Graph

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

Data Graph là gì?

Data Graph là một tiện ích mở rộng Chrome được phát triển bởi b romney, và tính năng chính của nó là "Creates a visual plot or graph from numerical data on a web page.".

Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng

screenshot

Tải xuống tệp CRX của tiện ích mở rộng Data Graph

Tải xuống các tệp mở rộng Data Graph dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.

Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng

                        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                    

Thông Tin Cơ Bản về Tiện Ích Mở Rộng

Tên Data Graph Data Graph
ID pfbdpmafjjljecigflhnpmnpnlicjggg
URL Chính Thức https://chromewebstore.google.com/detail/data-graph/pfbdpmafjjljecigflhnpmnpnlicjggg
Mô tả Creates a visual plot or graph from numerical data on a web page.
Kích Thước Tệp 421 KB
Số Lần Cài Đặt 113
Phiên Bản Hiện Tại 0.1
Cập Nhật Lần Cuối 2018-11-01
Ngày Phát Hành 2018-10-27
Nhà Phát Triển b romney
Email [email protected]
Loại Thanh Toán free
Trang Web Mở Rộng https://desolate.netlify.com
Ngôn Ngữ Được Hỗ Trợ 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'"
}