GtR Explorer
Improve the search of http://gtr.rcuk.ac.uk/ with data visualisation
Was ist GtR Explorer?
GtR Explorer ist eine Chrome-Erweiterung, die von Ivan Fraixedes entwickelt wurde, und ihr Hauptmerkmal ist "Improve the search of http://gtr.rcuk.ac.uk/ with data visualisation".
Erweiterungsscreenshots
GtR Explorer-Erweiterungs-CRX-Datei herunterladen
Laden Sie GtR Explorer-Erweiterungsdateien im crx-Format herunter, installieren Sie Chrome-Erweiterungen manuell im Browser oder teilen Sie die crx-Dateien mit Freunden, um Chrome-Erweiterungen einfach zu installieren.
Anleitung zur Verwendung der Erweiterung
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 Grundlegende Informationen zur Erweiterung
| Name | |
| ID | nhhkeakfbhhdlghchpckkhdlfbmneapa |
| Offizielle URL | https://chromewebstore.google.com/detail/gtr-explorer/nhhkeakfbhhdlghchpckkhdlfbmneapa |
| Beschreibung | Improve the search of http://gtr.rcuk.ac.uk/ with data visualisation |
| Dateigröße | 71.41 KB |
| Installationsanzahl | 20 |
| Aktuelle Version | 0.0.3 |
| Letztes Update | 2013-11-24 |
| Veröffentlichungsdatum | 2013-11-24 |
| Entwickler | Ivan Fraixedes |
| Zahlungsart | free |
| Erweiterungswebsite | https://github.com/ifraixedes/hack-RCUKGatewayResarch112013 |
| Hilfeseite URL | https://github.com/ifraixedes/hack-RCUKGatewayResarch112013 |
| Unterstützte Sprachen | 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"
]
} | |