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"입니다.

확장 프로그램 스크린샷

screenshot

Github Jupyter diff viewer 확장 프로그램 CRX 파일 다운로드

크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.

확장 프로그램 사용 설명서

                        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 Github Jupyter diff viewer
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
    }
}