Github linkify for CMSSW

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

Co to jest Github linkify for CMSSW?

Github linkify for CMSSW to rozszerzenie Chrome opracowane przez github.linkify.cmssw, a jego główną funkcją jest „Turn C++ and Python includes in CMSSW into links on Github”.

Zrzuty ekranu rozszerzenia

screenshot
screenshot

Pobierz plik CRX rozszerzenia Github linkify for CMSSW

Pobierz pliki rozszerzeń Github linkify for CMSSW w formacie crx, zainstaluj ręcznie rozszerzenia Chrome w przeglądarce lub udostępnij pliki crx znajomym, aby łatwo zainstalować rozszerzenia Chrome.

Instrukcja Użytkowania Rozszerzenia

                        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.                    

Podstawowe informacje o rozszerzeniu

Nazwa Github linkify for CMSSW Github linkify for CMSSW
ID dfhloocknejlnadfgmkceikaaidgmndk
Oficjalny URL https://chromewebstore.google.com/detail/github-linkify-for-cmssw/dfhloocknejlnadfgmkceikaaidgmndk
Opis Turn C++ and Python includes in CMSSW into links on Github
Rozmiar pliku 19.05 KB
Liczba instalacji 216
Aktualna Wersja 0.3.3
Ostatnia Aktualizacja 2019-07-11
Data Publikacji 2019-07-11
Ocena 4.80/5 Łącznie 5 Oceny
Deweloper github.linkify.cmssw
Typ Płatności free
Strona Rozszerzenia https://github.com/raggleton/github-linkify-cmssw/
Adres URL Strony Pomocy https://github.com/raggleton/github-linkify-cmssw/issues
Obsługiwane Języki 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"
    }
}