Github linkify for CMSSW

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

What is Github linkify for CMSSW?

Github linkify for CMSSW is a Chrome extension developed by github.linkify.cmssw, and its main feature is "Turn C++ and Python includes in CMSSW into links on Github".

Extension Screenshots

screenshot
screenshot

Download Github linkify for CMSSW Extension CRX File

Download Github linkify for CMSSW extension files in crx format, manually install Chrome extensions in the browser, or share the crx files with friends to easily install Chrome extensions.

Extension Usage Instructions

                        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.                    

Extension Basic Information

Name Github linkify for CMSSW Github linkify for CMSSW
ID dfhloocknejlnadfgmkceikaaidgmndk
Official URL https://chromewebstore.google.com/detail/github-linkify-for-cmssw/dfhloocknejlnadfgmkceikaaidgmndk
Description Turn C++ and Python includes in CMSSW into links on Github
File Size 19.05 KB
Installation Count 216
Current Version 0.3.3
Last Updated 2019-07-11
Publish Date 2019-07-11
Rating 4.80/5 Total 5 Ratings
Developer github.linkify.cmssw
Payment Type free
Extension Website https://github.com/raggleton/github-linkify-cmssw/
Help Page URL https://github.com/raggleton/github-linkify-cmssw/issues
Supported Languages 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"
    }
}