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”。

擴展截圖

screenshot

下載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.                    

擴展基本資訊

名稱 HipChat IPython Notebook viewer HipChat IPython Notebook viewer
ID ahhalickndgjlapkbmmjjmjdebfglode
官方網址 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"
            ]
        }
    ]
}