BitBucket NBviewer Button
Add a button in BitBucket to view an IPython/Jupyter notebook in nbviewer
Co je BitBucket NBviewer Button?
BitBucket NBviewer Button je rozšíření Chrome vyvinuté OlympusMonds, a jeho hlavní funkcí je „Add a button in BitBucket to view an IPython/Jupyter notebook in nbviewer“.
Snímky obrazovky rozšíření
Stáhnout soubor CRX rozšíření BitBucket NBviewer Button
Stáhněte si soubory rozšíření BitBucket NBviewer Button ve formátu crx, ručně nainstalujte rozšíření Chrome do prohlížeče nebo sdílejte soubory crx s přáteli, abyste jednoduše nainstalovali rozšíření Chrome.
Pokyny pro Použití Rozšíření
Commiting IPython/Jupyter notebooks is great - but since they are just JSON, looking at a commit diff is often unhelpful. This Chrome extension adds a button in BitBucket to NBviewer, which then reads the raw commit and renders it. Obviously this will only work for public repos.
Základní Informace o Rozšíření
Název | BitBucket NBviewer Button |
ID | pmffdaflalienoekibbmcblmabgkcoac |
Oficiální URL | https://chromewebstore.google.com/detail/bitbucket-nbviewer-button/pmffdaflalienoekibbmcblmabgkcoac |
Popis | Add a button in BitBucket to view an IPython/Jupyter notebook in nbviewer |
Velikost souboru | 215 KB |
Počet instalací | 246 |
Aktuální Verze | 1.1.1 |
Poslední Aktualizace | 2015-09-10 |
Datum Vydání | 2015-09-10 |
Hodnocení | 2.00/5 Celkem 4 Hodnocení |
Vývojář | OlympusMonds |
Typ Platby | free |
Webové stránky Rozšíření | https://bitbucket.org/lmondy/bitbucket_nbviewer/overview |
Podporované Jazyky | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "BitBucket NBviewer Button", "short_name": "BB NBViewer", "description": "Add a button in BitBucket to view an IPython\/Jupyter notebook in nbviewer", "version": "1.1.1", "icons": { "48": "icons\/icon48.png", "128": "icons\/smaller.png" }, "content_scripts": [ { "matches": [ "*:\/\/bitbucket.org\/*" ], "js": [ "add_nbviewer_button.js" ], "run_at": "document_end" } ] } |