Github linkify for CMSSW

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

Τι είναι το Github linkify for CMSSW;

Το Github linkify for CMSSW είναι ένα πρόσθετο Chrome που αναπτύχθηκε από τον github.linkify.cmssw, και η κύρια λειτουργία του είναι "Turn C++ and Python includes in CMSSW into links on Github".

Στιγμιότυπα Επέκτασης

screenshot
screenshot

Λήψη αρχείου CRX της επέκτασης Github linkify for CMSSW

Λήψη αρχείων επέκτασης Github linkify for CMSSW σε μορφή crx, εγκατάσταση των επεκτάσεων Chrome μη αυτόματα στον περιηγητή ή κοινοποίηση των αρχείων crx με φίλους για εύκολη εγκατάσταση των επεκτάσεων Chrome.

Οδηγίες Χρήσης της Επέκτασης

                        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"
    }
}