BitBucket NBviewer Button
Add a button in BitBucket to view an IPython/Jupyter notebook in nbviewer
Co to jest BitBucket NBviewer Button?
BitBucket NBviewer Button to rozszerzenie Chrome opracowane przez OlympusMonds, a jego główną funkcją jest „Add a button in BitBucket to view an IPython/Jupyter notebook in nbviewer”.
Zrzuty ekranu rozszerzenia
Pobierz plik CRX rozszerzenia BitBucket NBviewer Button
Pobierz pliki rozszerzeń BitBucket NBviewer Button w formacie crx, zainstaluj ręcznie rozszerzenia Chrome w przeglądarce lub udostępnij pliki crx znajomym, aby łatwo zainstalować rozszerzenia Chrome.
Instrukcja Użytkowania Rozszerzenia
                        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.                     Podstawowe informacje o rozszerzeniu
| Nazwa |   |  
| ID | pmffdaflalienoekibbmcblmabgkcoac | 
| Oficjalny URL | https://chromewebstore.google.com/detail/bitbucket-nbviewer-button/pmffdaflalienoekibbmcblmabgkcoac | 
| Opis | Add a button in BitBucket to view an IPython/Jupyter notebook in nbviewer | 
| Rozmiar pliku | 215 KB | 
| Liczba instalacji | 246 | 
| Aktualna Wersja | 1.1.1 | 
| Ostatnia Aktualizacja | 2015-09-10 | 
| Data Publikacji | 2015-09-10 | 
| Ocena | 2.00/5 Łącznie 4 Oceny | 
| Deweloper | OlympusMonds | 
| Typ Płatności | free | 
| Strona Rozszerzenia | https://bitbucket.org/lmondy/bitbucket_nbviewer/overview | 
| Obsługiwane Języki | 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"
        }
    ]
}  |  |