Github linkify for CMSSW

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

Qu'est-ce que Github linkify for CMSSW ?

Github linkify for CMSSW est une extension Chrome développée par github.linkify.cmssw, et sa fonction principale est "Turn C++ and Python includes in CMSSW into links on Github".

Captures d'Écran de l'Extension

screenshot
screenshot

Télécharger le fichier CRX de l'extension Github linkify for CMSSW

Téléchargez les fichiers d'extension Github linkify for CMSSW au format crx, installez manuellement les extensions Chrome dans le navigateur ou partagez les fichiers crx avec des amis pour installer facilement les extensions Chrome.

Instructions d'Utilisation de l'Extension

                        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.                    

Informations de Base sur l'Extension

Nom Github linkify for CMSSW Github linkify for CMSSW
ID dfhloocknejlnadfgmkceikaaidgmndk
URL Officiel https://chromewebstore.google.com/detail/github-linkify-for-cmssw/dfhloocknejlnadfgmkceikaaidgmndk
Description Turn C++ and Python includes in CMSSW into links on Github
Taille du Fichier 19.05 KB
Nombre d'Installations 216
Version Actuelle 0.3.3
Dernière Mise à Jour 2019-07-11
Date de Publication 2019-07-11
Évaluation 4.80/5 Total 5 Évaluations
Développeur github.linkify.cmssw
Type de Paiement free
Site Web de l'Extension https://github.com/raggleton/github-linkify-cmssw/
URL de la Page d'Aide https://github.com/raggleton/github-linkify-cmssw/issues
Langues Prises en Charge 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"
    }
}