Github Jupyter diff viewer

Diff viewer for jupyter file(*.ipynb) in Github

What is Github Jupyter diff viewer?

Github Jupyter diff viewer is a Chrome extension developed by https://banatech.net, and its main feature is "Diff viewer for jupyter file(*.ipynb) in Github".

Extension Screenshots

screenshot

Download Github Jupyter diff viewer Extension CRX File

Download Github Jupyter diff viewer extension files in crx format, manually install Chrome extensions in the browser, or share the crx files with friends to easily install Chrome extensions.

Extension Usage Instructions

                        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のパーソナルアクセストークンを入力する必要があります.                    

Extension Basic Information

Name Github Jupyter diff viewer Github Jupyter diff viewer
ID bhncfkebhcnjhjpagogngbcdbapjdiej
Official URL https://chromewebstore.google.com/detail/github-jupyter-diff-viewe/bhncfkebhcnjhjpagogngbcdbapjdiej
Description Diff viewer for jupyter file(*.ipynb) in Github
File Size 12.39 KB
Installation Count 52
Current Version 0.0.8
Last Updated 2022-04-20
Publish Date 2020-07-26
Developer https://banatech.net
Email [email protected]
Payment Type free
Help Page URL https://github.com/bana118/github-jupyter-diff-viewer
Privacy Policy Page URL https://bana118.github.io/html/chrome-extensions-privacy-policy
Supported Languages 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
    }
}