Kernel Hub

Push your kaggle kernals directly to github

Qu'est-ce que Kernel Hub ?

Kernel Hub est une extension Chrome développée par Aymen Mouelhi, et sa fonction principale est "Push your kaggle kernals directly to github".

Captures d'Écran de l'Extension

screenshot
screenshot
screenshot
screenshot

Télécharger le fichier CRX de l'extension Kernel Hub

Téléchargez les fichiers d'extension Kernel Hub au format crx, installez manuellement les extensions Chrome dans le navigateur ou partagez les fichiers crx avec des amis pour installer facilement les extensions Chrome.

Instructions d'Utilisation de l'Extension

                        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                    

Informations de Base sur l'Extension

Nom Kernel Hub Kernel Hub
ID liihahcoianndlfdfjoklnlhfbeokmjf
URL Officiel https://chrome.google.com/webstore/detail/kernel-hub/liihahcoianndlfdfjoklnlhfbeokmjf
Description Push your kaggle kernals directly to github
Taille du Fichier 737 KB
Nombre d'Installations 754
Version Actuelle 1.0.8
Dernière Mise à Jour 2017-08-28
Date de Publication 2017-08-28
Évaluation 2.33/5 Total 6 Évaluations
Développeur Aymen Mouelhi
Email [email protected]
Type de Paiement free
Langues Prises en Charge 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'"
}