HipChat IPython Notebook viewer

Show IPython notebook attachment in the HipChat web app

O que é HipChat IPython Notebook viewer?

HipChat IPython Notebook viewer é uma extensão do Chrome desenvolvida por herbertkruitbosch, e sua principal característica é "Show IPython notebook attachment in the HipChat web app".

Capturas de Tela da Extensão

screenshot

Baixar o arquivo CRX da Extensão HipChat IPython Notebook viewer

Baixe arquivos de extensão HipChat IPython Notebook viewer no formato crx, instale manualmente as extensões do Chrome no navegador ou compartilhe os arquivos crx com amigos para instalar facilmente as extensões do Chrome.

Instruções de Uso da Extensão

                        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.                    

Informações Básicas da Extensão

Nome HipChat IPython Notebook viewer HipChat IPython Notebook viewer
ID ahhalickndgjlapkbmmjjmjdebfglode
URL Oficial https://chrome.google.com/webstore/detail/ahhalickndgjlapkbmmjjmjdebfglode
Descrição Show IPython notebook attachment in the HipChat web app
Tamanho do Arquivo 157 KB
Contagem de Instalações 109
Versão Atual 1.2
Última Atualização 2016-05-10
Data de Publicação 2016-05-09
Classificação 1.00/5 Total de 1 Avaliações
Desenvolvedor herbertkruitbosch
Tipo de Pagamento free
Idiomas Suportados 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"
            ]
        }
    ]
}