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.”。
扩展截图
下载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 扩展基本信息
| 名称 | |
| ID | pfbdpmafjjljecigflhnpmnpnlicjggg |
| 官方URL | 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'"
} | |