BitBucket NBviewer Button
Add a button in BitBucket to view an IPython/Jupyter notebook in nbviewer
Wat is BitBucket NBviewer Button?
BitBucket NBviewer Button is een Chrome-extensie ontwikkeld door OlympusMonds, en de belangrijkste functie is "Add a button in BitBucket to view an IPython/Jupyter notebook in nbviewer".
Extensie Screenshots
Download het CRX-bestand van de extensie BitBucket NBviewer Button
Download BitBucket NBviewer Button-extensiebestanden in crx-indeling, installeer Chrome-extensies handmatig in de browser of deel de crx-bestanden met vrienden om Chrome-extensies eenvoudig te installeren.
Instructies voor het Gebruik van de Extensie
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. Basisinformatie over de Extensie
| Naam | |
| ID | pmffdaflalienoekibbmcblmabgkcoac |
| Officiële URL | https://chromewebstore.google.com/detail/bitbucket-nbviewer-button/pmffdaflalienoekibbmcblmabgkcoac |
| Beschrijving | Add a button in BitBucket to view an IPython/Jupyter notebook in nbviewer |
| Bestandsgrootte | 215 KB |
| Aantal Installaties | 246 |
| Huidige Versie | 1.1.1 |
| Laatst Bijgewerkt | 2015-09-10 |
| Publicatiedatum | 2015-09-10 |
| Beoordeling | 2.00/5 Totaal 4 Beoordelingen |
| Ontwikkelaar | OlympusMonds |
| Betalingswijze | free |
| Extensiewebsite | https://bitbucket.org/lmondy/bitbucket_nbviewer/overview |
| Ondersteunde Talen | 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"
}
]
} | |