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文件
下载HipChat IPython Notebook viewer扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。
扩展使用说明
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" ] } ] } |