Data Graph
Creates a visual plot or graph from numerical data on a web page.
Vad är Data Graph?
Data Graph är en Chrome-tillägg utvecklad av b romney, och dess huvudfunktion är "Creates a visual plot or graph from numerical data on a web page.".
Tilläggsskärmbilder
Ladda ner Data Graph-förlängningens CRX-fil
Ladda ner Data Graph-filändelser i crx-format, installera Chrome-tillägg manuellt i webbläsaren eller dela crx-filerna med vänner för att enkelt installera Chrome-tillägg.
Användarmanual för Tillägg
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 Grundläggande Information om Tillägg
| Namn | |
| ID | pfbdpmafjjljecigflhnpmnpnlicjggg |
| Officiell webbadress | https://chromewebstore.google.com/detail/data-graph/pfbdpmafjjljecigflhnpmnpnlicjggg |
| Beskrivning | Creates a visual plot or graph from numerical data on a web page. |
| Filstorlek | 421 KB |
| Antal Installationer | 113 |
| Aktuell Version | 0.1 |
| Senast Uppdaterad | 2018-11-01 |
| Publiceringsdatum | 2018-10-27 |
| Utvecklare | b romney |
| E-post | [email protected] |
| Betalningssätt | free |
| Tilläggswebbplats | https://desolate.netlify.com |
| Stödda Språk | 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'"
} | |