Github Jupyter diff viewer
Diff viewer for jupyter file(*.ipynb) in Github
Что такое Github Jupyter diff viewer?
Github Jupyter diff viewer - это расширение Chrome, разработанное https://banatech.net, и его основная функция - "Diff viewer for jupyter file(*.ipynb) in Github".
Снимки экрана расширения
Скачать файл CRX расширения Github Jupyter diff viewer
Скачайте файлы расширений Github Jupyter diff viewer в формате crx, установите расширения Chrome вручную в браузере или поделитесь файлами crx с друзьями, чтобы легко установить расширения Chrome.
Инструкции по использованию расширения
Show only diff of source code(python and markdown) when you watch file changed in pull request or commit.
You must enter a Github personal access token in the options if you want to use it in a private repository.
プルリクエストまたはコミットでファイルの変更を閲覧するときに,ソースコードの差分のみを表示します(python と markdown).
プライベートレポジトリで使用する場合はオプションでGithubのパーソナルアクセストークンを入力する必要があります. Основная информация о расширении
| Название | |
| ID | bhncfkebhcnjhjpagogngbcdbapjdiej |
| Официальный URL | https://chromewebstore.google.com/detail/github-jupyter-diff-viewe/bhncfkebhcnjhjpagogngbcdbapjdiej |
| Описание | Diff viewer for jupyter file(*.ipynb) in Github |
| Размер файла | 12.39 KB |
| Количество установок | 52 |
| Текущая Версия | 0.0.8 |
| Последнее Обновление | 2022-04-20 |
| Дата публикации | 2020-07-26 |
| Разработчик | https://banatech.net |
| Электронная почта | [email protected] |
| Тип оплаты | free |
| URL страницы помощи | https://github.com/bana118/github-jupyter-diff-viewer |
| URL страницы политики конфиденциальности | https://bana118.github.io/html/chrome-extensions-privacy-policy |
| Поддерживаемые языки | ja |
| manifest.json | |
{
"update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
"name": "Github Jupyter diff viewer",
"version": "0.0.8",
"manifest_version": 2,
"description": "Diff viewer for jupyter file(*.ipynb) in Github",
"permissions": [
"storage"
],
"icons": {
"16": "icons\/icon128.png",
"48": "icons\/icon128.png",
"128": "icons\/icon128.png"
},
"content_scripts": [
{
"matches": [
"https:\/\/github.com\/*"
],
"css": [
"css\/loader.css"
],
"js": [
"js\/content.js"
],
"run_at": "document_end",
"all_frames": true
}
],
"options_ui": {
"page": "options\/options.html",
"chrome_style": true
}
} | |