Data Graph
Creates a visual plot or graph from numerical data on a web page.
Qu'est-ce que Data Graph ?
Data Graph est une extension Chrome développée par b romney, et sa fonction principale est "Creates a visual plot or graph from numerical data on a web page.".
Captures d'Écran de l'Extension
Télécharger le fichier CRX de l'extension Data Graph
Téléchargez les fichiers d'extension Data Graph au format crx, installez manuellement les extensions Chrome dans le navigateur ou partagez les fichiers crx avec des amis pour installer facilement les extensions Chrome.
Instructions d'Utilisation de l'Extension
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
Informations de Base sur l'Extension
Nom | Data Graph |
ID | pfbdpmafjjljecigflhnpmnpnlicjggg |
URL Officiel | https://chromewebstore.google.com/detail/data-graph/pfbdpmafjjljecigflhnpmnpnlicjggg |
Description | Creates a visual plot or graph from numerical data on a web page. |
Taille du Fichier | 421 KB |
Nombre d'Installations | 113 |
Version Actuelle | 0.1 |
Dernière Mise à Jour | 2018-11-01 |
Date de Publication | 2018-10-27 |
Développeur | b romney |
[email protected] | |
Type de Paiement | free |
Site Web de l'Extension | https://desolate.netlify.com |
Langues Prises en Charge | 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'" } |