BitBucket NBviewer Button
Add a button in BitBucket to view an IPython/Jupyter notebook in nbviewer
Cos'è BitBucket NBviewer Button?
BitBucket NBviewer Button è un'estensione di Chrome sviluppata da OlympusMonds, e la sua funzione principale è "Add a button in BitBucket to view an IPython/Jupyter notebook in nbviewer".
Screenshot dell'Estensione
Scarica il file CRX dell'estensione BitBucket NBviewer Button
Scarica i file di estensione BitBucket NBviewer Button 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
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.
Informazioni di Base sull'Estensione
Nome | BitBucket NBviewer Button |
ID | pmffdaflalienoekibbmcblmabgkcoac |
URL Ufficiale | https://chromewebstore.google.com/detail/bitbucket-nbviewer-button/pmffdaflalienoekibbmcblmabgkcoac |
Descrizione | Add a button in BitBucket to view an IPython/Jupyter notebook in nbviewer |
Dimensione del File | 215 KB |
Conteggio Installazioni | 246 |
Versione Corrente | 1.1.1 |
Ultimo Aggiornamento | 2015-09-10 |
Data di Pubblicazione | 2015-09-10 |
Valutazione | 2.00/5 Totale 4 Valutazioni |
Sviluppatore | OlympusMonds |
Tipo di Pagamento | free |
Sito Web dell'Estensione | https://bitbucket.org/lmondy/bitbucket_nbviewer/overview |
Lingue Supportate | 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" } ] } |