GtR Explorer
Improve the search of http://gtr.rcuk.ac.uk/ with data visualisation
Co to jest GtR Explorer?
GtR Explorer to rozszerzenie Chrome opracowane przez Ivan Fraixedes, a jego główną funkcją jest „Improve the search of http://gtr.rcuk.ac.uk/ with data visualisation”.
Zrzuty ekranu rozszerzenia
Pobierz plik CRX rozszerzenia GtR Explorer
Pobierz pliki rozszerzeń GtR Explorer w formacie crx, zainstaluj ręcznie rozszerzenia Chrome w przeglądarce lub udostępnij pliki crx znajomym, aby łatwo zainstalować rozszerzenia Chrome.
Instrukcja Użytkowania Rozszerzenia
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
Podstawowe informacje o rozszerzeniu
Nazwa | GtR Explorer |
ID | nhhkeakfbhhdlghchpckkhdlfbmneapa |
Oficjalny URL | https://chromewebstore.google.com/detail/gtr-explorer/nhhkeakfbhhdlghchpckkhdlfbmneapa |
Opis | Improve the search of http://gtr.rcuk.ac.uk/ with data visualisation |
Rozmiar pliku | 71.41 KB |
Liczba instalacji | 20 |
Aktualna Wersja | 0.0.3 |
Ostatnia Aktualizacja | 2013-11-24 |
Data Publikacji | 2013-11-24 |
Deweloper | Ivan Fraixedes |
Typ Płatności | free |
Strona Rozszerzenia | https://github.com/ifraixedes/hack-RCUKGatewayResarch112013 |
Adres URL Strony Pomocy | https://github.com/ifraixedes/hack-RCUKGatewayResarch112013 |
Obsługiwane Języki | 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" ] } |