Data Graph
Creates a visual plot or graph from numerical data on a web page.
Cos'è Data Graph?
Data Graph è un'estensione di Chrome sviluppata da b romney, e la sua funzione principale è "Creates a visual plot or graph from numerical data on a web page.".
Screenshot dell'Estensione
Scarica il file CRX dell'estensione Data Graph
Scarica i file di estensione Data Graph in formato crx, installa manualmente le estensioni di Chrome nel browser o condividi i file crx con gli amici per installare facilmente le estensioni di Chrome.
Istruzioni per l'Uso dell'Estensione
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
Informazioni di Base sull'Estensione
Nome | Data Graph |
ID | pfbdpmafjjljecigflhnpmnpnlicjggg |
URL Ufficiale | https://chromewebstore.google.com/detail/data-graph/pfbdpmafjjljecigflhnpmnpnlicjggg |
Descrizione | Creates a visual plot or graph from numerical data on a web page. |
Dimensione del File | 421 KB |
Conteggio Installazioni | 113 |
Versione Corrente | 0.1 |
Ultimo Aggiornamento | 2018-11-01 |
Data di Pubblicazione | 2018-10-27 |
Sviluppatore | b romney |
[email protected] | |
Tipo di Pagamento | free |
Sito Web dell'Estensione | https://desolate.netlify.com |
Lingue Supportate | 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'" } |