HipChat IPython Notebook viewer
Show IPython notebook attachment in the HipChat web app
HipChat IPython Notebook viewer란 무엇입니까?
HipChat IPython Notebook viewer은(는) herbertkruitbosch에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Show IPython notebook attachment in the HipChat web app"입니다.
확장 프로그램 스크린샷
HipChat IPython Notebook viewer 확장 프로그램 CRX 파일 다운로드
크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.
확장 프로그램 사용 설명서
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.
확장 프로그램 기본 정보
이름 | |
ID | ahhalickndgjlapkbmmjjmjdebfglode |
공식 URL | https://chrome.google.com/webstore/detail/ahhalickndgjlapkbmmjjmjdebfglode |
설명 | Show IPython notebook attachment in the HipChat web app |
파일 크기 | 157 KB |
설치 횟수 | 109 |
현재 버전 | 1.2 |
최근 업데이트 | 2016-05-10 |
출시 날짜 | 2016-05-09 |
평점 | 1.00/5 총 1 개의 평점 |
개발자 | herbertkruitbosch |
결제 유형 | free |
지원되는 언어 | 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" ] } ] } |