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開發的Chrome擴展程式,該擴展的主要功能是“Turn C++ and Python includes in CMSSW into links on Github”。

擴展截圖

screenshot
screenshot

下載Github linkify for CMSSW擴展crx文件

下載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
官方網址 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"
    }
}