Github Jupyter diff viewer
Diff viewer for jupyter file(*.ipynb) in Github
Hvad er Github Jupyter diff viewer?
Github Jupyter diff viewer er en Chrome-udvidelse udviklet af https://banatech.net, og dens hovedfunktion er "Diff viewer for jupyter file(*.ipynb) in Github".
Udvidelsesskærmbilleder
Download Github Jupyter diff viewer-udvidelses-CRX-fil
Download Github Jupyter diff viewer-udvidelsesfiler i crx-format, installer Chrome-udvidelser manuelt i browseren eller del crx-filer med venner for nemt at installere Chrome-udvidelser.
Brugsanvisning til Udvidelsen
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のパーソナルアクセストークンを入力する必要があります. Grundlæggende oplysninger om udvidelsen
| Navn | |
| ID | bhncfkebhcnjhjpagogngbcdbapjdiej |
| Officiel URL | https://chromewebstore.google.com/detail/github-jupyter-diff-viewe/bhncfkebhcnjhjpagogngbcdbapjdiej |
| Beskrivelse | Diff viewer for jupyter file(*.ipynb) in Github |
| Filstørrelse | 12.39 KB |
| Antal Installationer | 52 |
| Nuværende Version | 0.0.8 |
| Senest Opdateret | 2022-04-20 |
| Udgivelsesdato | 2020-07-26 |
| Udvikler | https://banatech.net |
| [email protected] | |
| Betalingsmetode | free |
| Hjælpeside-URL | https://github.com/bana118/github-jupyter-diff-viewer |
| URL til Fortrolighedspolitik Side | https://bana118.github.io/html/chrome-extensions-privacy-policy |
| Understøttede Sprog | 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
}
} | |