Github linkify for CMSSW

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

Cos'è Github linkify for CMSSW?

Github linkify for CMSSW è un'estensione di Chrome sviluppata da github.linkify.cmssw, e la sua funzione principale è "Turn C++ and Python includes in CMSSW into links on Github".

Screenshot dell'Estensione

screenshot
screenshot

Scarica il file CRX dell'estensione Github linkify for CMSSW

Scarica i file di estensione Github linkify for CMSSW in formato crx, installa manualmente le estensioni di Chrome nel browser o condividi i file crx con gli amici per installare facilmente le estensioni di Chrome.

Istruzioni per l'Uso dell'Estensione

                        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.                    

Informazioni di Base sull'Estensione

Nome Github linkify for CMSSW Github linkify for CMSSW
ID dfhloocknejlnadfgmkceikaaidgmndk
URL Ufficiale https://chromewebstore.google.com/detail/github-linkify-for-cmssw/dfhloocknejlnadfgmkceikaaidgmndk
Descrizione Turn C++ and Python includes in CMSSW into links on Github
Dimensione del File 19.05 KB
Conteggio Installazioni 216
Versione Corrente 0.3.3
Ultimo Aggiornamento 2019-07-11
Data di Pubblicazione 2019-07-11
Valutazione 4.80/5 Totale 5 Valutazioni
Sviluppatore github.linkify.cmssw
Tipo di Pagamento free
Sito Web dell'Estensione https://github.com/raggleton/github-linkify-cmssw/
URL della Pagina di Aiuto https://github.com/raggleton/github-linkify-cmssw/issues
Lingue Supportate 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"
    }
}