Github linkify for CMSSW

Turn C++ and Python includes in CMSSW into links on Github

Was ist Github linkify for CMSSW?

Github linkify for CMSSW ist eine Chrome-Erweiterung, die von github.linkify.cmssw entwickelt wurde, und ihr Hauptmerkmal ist "Turn C++ and Python includes in CMSSW into links on Github".

Erweiterungsscreenshots

screenshot
screenshot

Github linkify for CMSSW-Erweiterungs-CRX-Datei herunterladen

Laden Sie Github linkify for CMSSW-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

                        Makes C++ and Python files in CMSSW on Github much easier to navigate by turning filepaths into links! No more copy-and-pasting! Also works on forks.

C++: convert "#include" statements into links. Also adds a link to the source file if it exists.

Python: convert "import X" and "process.load('X')" statements into links.

NOTE: there is a current known issue, whereby you must sometimes reload the page to get links to appear.                    

Grundlegende Informationen zur Erweiterung

Name Github linkify for CMSSW Github linkify for CMSSW
ID dfhloocknejlnadfgmkceikaaidgmndk
Offizielle URL https://chromewebstore.google.com/detail/github-linkify-for-cmssw/dfhloocknejlnadfgmkceikaaidgmndk
Beschreibung Turn C++ and Python includes in CMSSW into links on Github
Dateigröße 19.05 KB
Installationsanzahl 216
Aktuelle Version 0.3.3
Letztes Update 2019-07-11
Veröffentlichungsdatum 2019-07-11
Bewertung 4.80/5 Insgesamt 5 Bewertungen
Entwickler github.linkify.cmssw
Zahlungsart free
Erweiterungswebsite https://github.com/raggleton/github-linkify-cmssw/
Hilfeseite URL https://github.com/raggleton/github-linkify-cmssw/issues
Unterstützte Sprachen en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Github linkify for CMSSW",
    "description": "Turn C++ and Python includes in CMSSW into links on Github",
    "version": "0.3.3",
    "content_scripts": [
        {
            "matches": [
                "https:\/\/www.github.com\/*\/cmssw\/*",
                "https:\/\/github.com\/*\/cmssw\/*"
            ],
            "js": [
                "contentscript.js"
            ],
            "run_at": "document_end"
        }
    ],
    "manifest_version": 2,
    "icons": {
        "128": "images\/icon\/icon_128.png"
    }
}