Kernel Hub

Push your kaggle kernals directly to github

什麼是Kernel Hub?

Kernel Hub是由Aymen Mouelhi開發的Chrome擴展程式,該擴展的主要功能是“Push your kaggle kernals directly to github”。

擴展截圖

screenshot
screenshot
screenshot
screenshot

下載Kernel Hub擴展crx文件

下載Kernel Hub擴展crx格式的文件,手動將Chrome擴充功能安裝到瀏覽器中,也可以將crx文件分享給朋友,輕鬆安裝Chrome擴充功能。

擴展使用說明

                        This extension helps you push all your updates on your kaggle kernels and scripts to your Github repositories.
The extension can publish to public and private repositories and can as well update the content of a kaggle kernel/script from an existing ipynb file or a script (R or python) from your repository.
It also works for jupyter notebooks, so you can publish your jupyter notebooks in Github with a click !
For more informations: https://www.kaggle.com/news/33266#post183954                    

擴展基本資訊

名稱 Kernel Hub Kernel Hub
ID liihahcoianndlfdfjoklnlhfbeokmjf
官方網址 https://chrome.google.com/webstore/detail/kernel-hub/liihahcoianndlfdfjoklnlhfbeokmjf
簡介 Push your kaggle kernals directly to github
檔案大小 737 KB
安裝次數 754
目前版本 1.0.8
更新時間 2017-08-28
上架時間 2017-08-28
評分 2.33/5 共 6 次評分
開發者 Aymen Mouelhi
電子郵箱 [email protected]
付費類型 free
支援的語言 en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Kernel Hub",
    "short_name": "Kernel Hub",
    "description": "Push your kaggle kernals directly to github",
    "version": "1.0.8",
    "manifest_version": 2,
    "minimum_chrome_version": "5.0",
    "permissions": [
        "tabs",
        "*:\/\/*\/*",
        "debugger",
        "",
        "webRequest",
        "webRequestBlocking",
        "tabs",
        "identity",
        "activeTab",
        "background",
        "storage",
        "unlimitedStorage"
    ],
    "icons": {
        "45": "icon-48.png",
        "128": "icon.png"
    },
    "background": {
        "scripts": [
            "background.js",
            "public\/lib\/jquery.min.js"
        ]
    },
    "web_accessible_resources": [
        "public\/lib\/angular.js",
        "public\/lib\/angular-route.js",
        "public\/lib\/jquery.min.js",
        "public\/lib\/bootstrap.min.js",
        "public\/*",
        "window.js"
    ],
    "content_scripts": [
        {
            "matches": [
                "*:\/\/*\/notebooks\/*",
                "*:\/\/www.kaggle.com\/*"
            ],
            "js": [
                "public\/lib\/jquery.min.js",
                "public\/lib\/angular.js",
                "public\/lib\/angular-route.js",
                "public\/lib\/bootstrap.min.js",
                "public\/lib\/bililiteRange.js",
                "public\/lib\/jquery.sendkeys.js",
                "public\/lib\/filesize.js",
                "public\/lib\/moment.min.js",
                "public\/lib\/Chart.min.js",
                "public\/lib\/angular-charts.min.js",
                "content.js",
                "inject.js"
            ],
            "all_frames": true
        }
    ],
    "content_security_policy": "script-src 'self' https:\/\/js.stripe.com\/v3\/ https:\/\/checkout.stripe.com\/checkout.js https:\/\/stripe.com\/img\/* https:\/\/www.google-analytics.com; object-src 'self'"
}