BitBucket NBviewer Button

Add a button in BitBucket to view an IPython/Jupyter notebook in nbviewer

BitBucket NBviewer Buttonとは何ですか?

BitBucket NBviewer ButtonはOlympusMondsによって開発されたChromeの拡張機能で、その主な機能は「Add a button in BitBucket to view an IPython/Jupyter notebook in nbviewer」です。

拡張機能のスクリーンショット

screenshot
screenshot

BitBucket NBviewer Button拡張機能のCRXファイルをダウンロード

BitBucket NBviewer Button拡張子のファイルをcrx形式でダウンロードし、ブラウザにChrome拡張機能を手動でインストールするか、crxファイルを友達と共有して簡単にChrome拡張機能をインストールします。

拡張機能の使用方法

                        Commiting IPython/Jupyter notebooks is great - but since they are just JSON, looking at a commit diff is often unhelpful. This Chrome extension adds a button in BitBucket to NBviewer, which then reads the raw commit and renders it.

Obviously this will only work for public repos.                    

拡張機能の基本情報

名前 BitBucket NBviewer Button BitBucket NBviewer Button
ID pmffdaflalienoekibbmcblmabgkcoac
公式URL https://chromewebstore.google.com/detail/bitbucket-nbviewer-button/pmffdaflalienoekibbmcblmabgkcoac
説明 Add a button in BitBucket to view an IPython/Jupyter notebook in nbviewer
ファイルサイズ 215 KB
インストール数 246
現在のバージョン 1.1.1
最終更新日 2015-09-10
公開日 2015-09-10
評価 2.00/5 合計 4 レビュー
開発者 OlympusMonds
支払い方法 free
拡張機能のウェブサイト https://bitbucket.org/lmondy/bitbucket_nbviewer/overview
対応言語 en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "BitBucket NBviewer Button",
    "short_name": "BB NBViewer",
    "description": "Add a button in BitBucket to view an IPython\/Jupyter notebook in nbviewer",
    "version": "1.1.1",
    "icons": {
        "48": "icons\/icon48.png",
        "128": "icons\/smaller.png"
    },
    "content_scripts": [
        {
            "matches": [
                "*:\/\/bitbucket.org\/*"
            ],
            "js": [
                "add_nbviewer_button.js"
            ],
            "run_at": "document_end"
        }
    ]
}