Data Graph
Creates a visual plot or graph from numerical data on a web page.
Data Graph क्या है?
Data Graph b romney द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Creates a visual plot or graph from numerical data on a web page."।
एक्सटेंशन स्क्रीनशॉट्स
एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें
crx प्रारूप में Data Graph एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ crx फ़ाइलों को साझा करें ताकि क्रोम एक्सटेंशन को आसानी से स्थापित किया जा सके।
एक्सटेंशन उपयोग निर्देश
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'" } |