GtR Explorer
Improve the search of http://gtr.rcuk.ac.uk/ with data visualisation
Cos'è GtR Explorer?
GtR Explorer è un'estensione di Chrome sviluppata da Ivan Fraixedes, e la sua funzione principale è "Improve the search of http://gtr.rcuk.ac.uk/ with data visualisation".
Screenshot dell'Estensione
Scarica il file CRX dell'estensione GtR Explorer
Scarica i file di estensione GtR Explorer 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
We have attempted to augment the display of Gateway to Research's data(http://gtr.rcuk.ac.uk/). By providing a graph, one can explore the connections between people, projects and organisations
Informazioni di Base sull'Estensione
Nome | GtR Explorer |
ID | nhhkeakfbhhdlghchpckkhdlfbmneapa |
URL Ufficiale | https://chromewebstore.google.com/detail/gtr-explorer/nhhkeakfbhhdlghchpckkhdlfbmneapa |
Descrizione | Improve the search of http://gtr.rcuk.ac.uk/ with data visualisation |
Dimensione del File | 71.41 KB |
Conteggio Installazioni | 20 |
Versione Corrente | 0.0.3 |
Ultimo Aggiornamento | 2013-11-24 |
Data di Pubblicazione | 2013-11-24 |
Sviluppatore | Ivan Fraixedes |
Tipo di Pagamento | free |
Sito Web dell'Estensione | https://github.com/ifraixedes/hack-RCUKGatewayResarch112013 |
URL della Pagina di Aiuto | https://github.com/ifraixedes/hack-RCUKGatewayResarch112013 |
Lingue Supportate | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "__MSG_appName__", "version": "0.0.3", "manifest_version": 2, "description": "__MSG_appDescription__", "icons": { "16": "images\/icon-16.png", "128": "images\/icon-128.png" }, "default_locale": "en", "content_security_policy": "default-src 'self'", "background": { "scripts": [ "scripts\/background.js" ] }, "permissions": [ "webRequest", "webRequestBlocking", "http:\/\/gtr.rcuk.ac.uk\/*" ], "content_scripts": [ { "matches": [ "http:\/\/gtr.rcuk.ac.uk\/*" ], "js": [ "\/bower_components\/lodash\/dist\/lodash.min.js", "\/bower_components\/d3\/d3.min.js", "\/scripts\/api.js", "\/scripts\/app.js" ], "css": [ "\/styles\/graphs.css" ] }, { "matches": [ "http:\/\/gtr.rcuk.ac.uk\/person\/*" ], "js": [ "\/scripts\/person.graph.js" ] } ], "web_accessible_resources": [ "\/images\/toggle.png" ] } |