Github Jupyter diff viewer

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

Cos'è Github Jupyter diff viewer?

Github Jupyter diff viewer è un'estensione di Chrome sviluppata da https://banatech.net, e la sua funzione principale è "Diff viewer for jupyter file(*.ipynb) in Github".

Screenshot dell'Estensione

screenshot

Scarica il file CRX dell'estensione Github Jupyter diff viewer

Scarica i file di estensione Github Jupyter diff viewer in formato crx, installa manualmente le estensioni di Chrome nel browser o condividi i file crx con gli amici per installare facilmente le estensioni di Chrome.

Istruzioni per l'Uso dell'Estensione

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

Informazioni di Base sull'Estensione

Nome Github Jupyter diff viewer Github Jupyter diff viewer
ID bhncfkebhcnjhjpagogngbcdbapjdiej
URL Ufficiale https://chromewebstore.google.com/detail/github-jupyter-diff-viewe/bhncfkebhcnjhjpagogngbcdbapjdiej
Descrizione Diff viewer for jupyter file(*.ipynb) in Github
Dimensione del File 12.39 KB
Conteggio Installazioni 52
Versione Corrente 0.0.8
Ultimo Aggiornamento 2022-04-20
Data di Pubblicazione 2020-07-26
Sviluppatore https://banatech.net
Email [email protected]
Tipo di Pagamento free
URL della Pagina di Aiuto https://github.com/bana118/github-jupyter-diff-viewer
URL della Pagina della Politica sulla Privacy https://bana118.github.io/html/chrome-extensions-privacy-policy
Lingue Supportate 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
    }
}