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 مع الأصدقاء لتثبيت الامتدادات بسهولة.

تعليمات استخدام التمديد

                        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/
عنوان صفحة المساعدة 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"
    }
}