Github Jupyter diff viewer
Diff viewer for jupyter file(*.ipynb) in Github
什么是Github Jupyter diff viewer?
Github Jupyter diff viewer是由https://banatech.net开发的Chrome扩展程序,该扩展的主要功能是“Diff viewer for jupyter file(*.ipynb) in Github”。
扩展截图
下载Github Jupyter diff viewer扩展crx文件
下载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
}
} | |