GtR Explorer
Improve the search of http://gtr.rcuk.ac.uk/ with data visualisation
什麼是GtR Explorer?
GtR Explorer是由Ivan Fraixedes開發的Chrome擴展程式,該擴展的主要功能是“Improve the search of http://gtr.rcuk.ac.uk/ with data visualisation”。
擴展截圖
下載GtR Explorer擴展crx文件
下載GtR Explorer擴展crx格式的文件,手動將Chrome擴充功能安裝到瀏覽器中,也可以將crx文件分享給朋友,輕鬆安裝Chrome擴充功能。
擴展使用說明
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 擴展基本資訊
| 名稱 | |
| ID | nhhkeakfbhhdlghchpckkhdlfbmneapa |
| 官方網址 | https://chromewebstore.google.com/detail/gtr-explorer/nhhkeakfbhhdlghchpckkhdlfbmneapa |
| 簡介 | Improve the search of http://gtr.rcuk.ac.uk/ with data visualisation |
| 檔案大小 | 71.41 KB |
| 安裝次數 | 20 |
| 目前版本 | 0.0.3 |
| 更新時間 | 2013-11-24 |
| 上架時間 | 2013-11-24 |
| 開發者 | Ivan Fraixedes |
| 付費類型 | free |
| 擴展官網 | https://github.com/ifraixedes/hack-RCUKGatewayResarch112013 |
| 說明頁面URL | https://github.com/ifraixedes/hack-RCUKGatewayResarch112013 |
| 支援的語言 | 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"
]
} | |