BitBucket NBviewer Button
Add a button in BitBucket to view an IPython/Jupyter notebook in nbviewer
What is BitBucket NBviewer Button?
BitBucket NBviewer Button is a Chrome extension developed by OlympusMonds, and its main feature is "Add a button in BitBucket to view an IPython/Jupyter notebook in nbviewer".
Extension Screenshots
Download BitBucket NBviewer Button Extension CRX File
Download BitBucket NBviewer Button 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
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.
Extension Basic Information
Name | BitBucket NBviewer Button |
ID | pmffdaflalienoekibbmcblmabgkcoac |
Official URL | https://chromewebstore.google.com/detail/bitbucket-nbviewer-button/pmffdaflalienoekibbmcblmabgkcoac |
Description | Add a button in BitBucket to view an IPython/Jupyter notebook in nbviewer |
File Size | 215 KB |
Installation Count | 246 |
Current Version | 1.1.1 |
Last Updated | 2015-09-10 |
Publish Date | 2015-09-10 |
Rating | 2.00/5 Total 4 Ratings |
Developer | OlympusMonds |
Payment Type | free |
Extension Website | https://bitbucket.org/lmondy/bitbucket_nbviewer/overview |
Supported Languages | 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" } ] } |