arXiv2git

Looks for github links from arXiv pages.

Was ist arXiv2git?

arXiv2git ist eine Chrome-Erweiterung, die von https://thoppe.github.io entwickelt wurde, und ihr Hauptmerkmal ist "Looks for github links from arXiv pages.".

Erweiterungsscreenshots

screenshot

arXiv2git-Erweiterungs-CRX-Datei herunterladen

Laden Sie arXiv2git-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

                        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.                    

Grundlegende Informationen zur Erweiterung

Name arXiv2git arXiv2git
ID gfhbipbocjiapodeflmklgnnnndplnpp
Offizielle URL https://chromewebstore.google.com/detail/arxiv2git/gfhbipbocjiapodeflmklgnnnndplnpp
Beschreibung Looks for github links from arXiv pages.
Dateigröße 51.71 KB
Installationsanzahl 144
Aktuelle Version 1.0
Letztes Update 2016-05-11
Veröffentlichungsdatum 2016-05-10
Bewertung 5.00/5 Insgesamt 2 Bewertungen
Entwickler https://thoppe.github.io
Zahlungsart free
Erweiterungswebsite https://github.com/thoppe/arXiv2git
Unterstützte Sprachen 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"
    }
}