Github linkify for CMSSW

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

Github linkify for CMSSW क्या है?

Github linkify for CMSSW github.linkify.cmssw द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Turn C++ and Python includes in CMSSW into links on Github"।

एक्सटेंशन स्क्रीनशॉट्स

screenshot
screenshot

एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें

crx प्रारूप में Github linkify for CMSSW एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ crx फ़ाइलों को साझा करें ताकि क्रोम एक्सटेंशन को आसानी से स्थापित किया जा सके।

एक्सटेंशन उपयोग निर्देश

                        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.                    

एक्सटेंशन की मूल जानकारी

नाम Github linkify for CMSSW Github linkify for CMSSW
ID dfhloocknejlnadfgmkceikaaidgmndk
आधिकारिक URL https://chromewebstore.google.com/detail/github-linkify-for-cmssw/dfhloocknejlnadfgmkceikaaidgmndk
विवरण Turn C++ and Python includes in CMSSW into links on Github
फ़ाइल का आकार 19.05 KB
स्थापना संख्या 216
वर्तमान संस्करण 0.3.3
अंतिम अपडेट 2019-07-11
प्रकाशन तिथि 2019-07-11
रेटिंग 4.80/5 कुल 5 रेटिंग्स
डेवलपर github.linkify.cmssw
भुगतान के प्रकार free
एक्सटेंशन वेबसाइट https://github.com/raggleton/github-linkify-cmssw/
सहायता पृष्ठ URL https://github.com/raggleton/github-linkify-cmssw/issues
समर्थित भाषाएँ 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"
    }
}