GtR Explorer

Improve the search of http://gtr.rcuk.ac.uk/ with data visualisation

O que é GtR Explorer?

GtR Explorer é uma extensão do Chrome desenvolvida por Ivan Fraixedes, e sua principal característica é "Improve the search of http://gtr.rcuk.ac.uk/ with data visualisation".

Capturas de Tela da Extensão

screenshot

Baixar o arquivo CRX da Extensão GtR Explorer

Baixe arquivos de extensão GtR Explorer no formato crx, instale manualmente as extensões do Chrome no navegador ou compartilhe os arquivos crx com amigos para instalar facilmente as extensões do Chrome.

Instruções de Uso da Extensão

                        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                    

Informações Básicas da Extensão

Nome GtR Explorer GtR Explorer
ID nhhkeakfbhhdlghchpckkhdlfbmneapa
URL Oficial https://chromewebstore.google.com/detail/gtr-explorer/nhhkeakfbhhdlghchpckkhdlfbmneapa
Descrição Improve the search of http://gtr.rcuk.ac.uk/ with data visualisation
Tamanho do Arquivo 71.41 KB
Contagem de Instalações 20
Versão Atual 0.0.3
Última Atualização 2013-11-24
Data de Publicação 2013-11-24
Desenvolvedor Ivan Fraixedes
Tipo de Pagamento free
Site da Extensão https://github.com/ifraixedes/hack-RCUKGatewayResarch112013
URL da Página de Ajuda https://github.com/ifraixedes/hack-RCUKGatewayResarch112013
Idiomas Suportados 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"
    ]
}