HipChat IPython Notebook viewer
Show IPython notebook attachment in the HipChat web app
Co to jest HipChat IPython Notebook viewer?
HipChat IPython Notebook viewer to rozszerzenie Chrome opracowane przez herbertkruitbosch, a jego główną funkcją jest „Show IPython notebook attachment in the HipChat web app”.
Zrzuty ekranu rozszerzenia
Pobierz plik CRX rozszerzenia HipChat IPython Notebook viewer
Pobierz pliki rozszerzeń HipChat IPython Notebook viewer 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
IPython Notebooks are a great way to share results of experiments with your coworkers or friends. However, the receiver still needs to open the notebook in either nbviewer or Jupyter. This extension opens a notebook attachment sent in HipChat in the browser, eliminating the need to download and open it externally and thus improves fast collaboration.
Podstawowe informacje o rozszerzeniu
Nazwa | |
ID | ahhalickndgjlapkbmmjjmjdebfglode |
Oficjalny URL | https://chrome.google.com/webstore/detail/ahhalickndgjlapkbmmjjmjdebfglode |
Opis | Show IPython notebook attachment in the HipChat web app |
Rozmiar pliku | 157 KB |
Liczba instalacji | 109 |
Aktualna Wersja | 1.2 |
Ostatnia Aktualizacja | 2016-05-10 |
Data Publikacji | 2016-05-09 |
Ocena | 1.00/5 Łącznie 1 Oceny |
Deweloper | herbertkruitbosch |
Typ Płatności | free |
Obsługiwane Języki | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "HipChat IPython Notebook viewer", "short_name": "HC IPYNB-viewer", "description": "Show IPython notebook attachment in the HipChat web app", "version": "1.2", "permissions": [ "https:\/\/*.amazonaws.com\/" ], "author": "Herbert Kruitbosch", "icons": { "128": "ipynb_icon_128x128.png", "512": "ipynb_icon_512x512.png" }, "content_scripts": [ { "matches": [ "https:\/\/*.hipchat.com\/*" ], "js": [ "jquery-2.2.0.min.js", "nbviewer.js", "lib\/ansi_up\/ansi_up.js", "lib\/marked\/marked.js", "lib\/notebook\/notebook.min.js", "lib\/prism\/prism.min.js" ], "css": [ "lib\/notebook\/notebook.css", "lib\/prism\/prism.css" ] } ] } |