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のパーソナルアクセストークンを入力する必要があります.
擴展基本資訊
名稱 | Github Jupyter diff viewer |
ID | bhncfkebhcnjhjpagogngbcdbapjdiej |
官方網址 | 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 } } |