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".
Снимки экрана расширения
Скачать файл 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. Основная информация о расширении
| Название | |
| 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"
}
} | |