Data Graph
Creates a visual plot or graph from numerical data on a web page.
Data Graphคืออะไร?
Data Graph เป็นส่วนขยายของ Chrome ที่พัฒนาโดย b romney และคุณลักษณะหลักของมันคือ "Creates a visual plot or graph from numerical data on a web page."
ภาพหน้าจอของส่วนขยาย
ดาวน์โหลดไฟล์ CRX ของส่วนขยาย Data Graph
ดาวน์โหลดไฟล์ส่วนขยาย 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 |
อีเมล | [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'" } |