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
拡張機能の基本情報
名前 | Data Graph |
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 |
Eメール | [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'" } |