arXiv2git

Looks for github links from arXiv pages.

O que é arXiv2git?

arXiv2git é uma extensão do Chrome desenvolvida por https://thoppe.github.io, e sua principal característica é "Looks for github links from arXiv pages.".

Capturas de Tela da Extensão

screenshot

Baixar o arquivo CRX da Extensão arXiv2git

Baixe arquivos de extensão arXiv2git 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

                        It's hard to search for code for papers like "t \bar{t} W production and decay at NLO". Some papers have a lot of links like "Deep Residual Learning for Image Recognition" and it may be hard to find all of them. This extensions tries to link the two together.

Visit and arXiv page and if known github links exist then this extension will modify the page to show you where they are!

Feedback welcome, but please leave it on the github project page.                    

Informações Básicas da Extensão

Nome arXiv2git arXiv2git
ID gfhbipbocjiapodeflmklgnnnndplnpp
URL Oficial https://chromewebstore.google.com/detail/arxiv2git/gfhbipbocjiapodeflmklgnnnndplnpp
Descrição Looks for github links from arXiv pages.
Tamanho do Arquivo 51.71 KB
Contagem de Instalações 144
Versão Atual 1.0
Última Atualização 2016-05-11
Data de Publicação 2016-05-10
Classificação 5.00/5 Total de 2 Avaliações
Desenvolvedor https://thoppe.github.io
Tipo de Pagamento free
Site da Extensão https://github.com/thoppe/arXiv2git
Idiomas Suportados en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "arXiv2git",
    "short_name": "arXiv2git",
    "version": "1.0",
    "description": "Looks for github links from arXiv pages.",
    "homepage_url": "https:\/\/github.com\/thoppe\/arXiv2git",
    "content_scripts": [
        {
            "matches": [
                "http:\/\/arxiv.org\/*",
                "https:\/\/arxiv.org\/*"
            ],
            "js": [
                "jquery-2.2.3.min.js",
                "content.js"
            ],
            "css": [
                "style.css"
            ]
        }
    ],
    "icons": {
        "16": "pencils16.png",
        "48": "pencils48.png",
        "128": "pencils128.png"
    }
}