NoteBook Buddy

Provides a helping hand when using Jupyter NoteBooks

Cos'è NoteBook Buddy?

NoteBook Buddy è un'estensione di Chrome sviluppata da iArunava, e la sua funzione principale è "Provides a helping hand when using Jupyter NoteBooks".

Screenshot dell'Estensione

screenshot

Scarica il file CRX dell'estensione NoteBook Buddy

Scarica i file di estensione NoteBook Buddy in formato crx, installa manualmente le estensioni di Chrome nel browser o condividi i file crx con gli amici per installare facilmente le estensioni di Chrome.

Istruzioni per l'Uso dell'Estensione

                        NoteBook Buddy is an extension that provides a helping hand while you are using Jupyter NoteBooks.

As of version 0.3 you can
1) Open Github Hosted NoteBook in nbviewer and Colab
2) Open Colab Hosted NoteBook in nbviewer and Github
3) Open nbviewer Hosted NoteBook in Colab and Github

All in ONE CLICK!                    

Informazioni di Base sull'Estensione

Nome NoteBook Buddy NoteBook Buddy
ID kmhoiofjdpbiodaggadcibdkicfgplcl
URL Ufficiale https://chrome.google.com/webstore/detail/notebook-buddy/kmhoiofjdpbiodaggadcibdkicfgplcl
Descrizione Provides a helping hand when using Jupyter NoteBooks
Dimensione del File 164 KB
Conteggio Installazioni 937
Versione Corrente 0.3
Ultimo Aggiornamento 2018-11-15
Data di Pubblicazione 2018-11-15
Valutazione 4.67/5 Totale 3 Valutazioni
Sviluppatore iArunava
Email [email protected]
Tipo di Pagamento free
Lingue Supportate en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "NoteBook Buddy",
    "version": "0.3",
    "description": "Provides a helping hand when using Jupyter NoteBooks",
    "homepage_url": "https:\/\/github.com\/iArunava\/NoteBook-Buddy\/",
    "icons": {
        "32": "icons\/nbuddy-24.png"
    },
    "permissions": [
        "notifications",
        "alarms",
        "storage",
        "unlimitedStorage",
        "activeTab",
        "tabs"
    ],
    "web_accessible_resources": [
        "icons\/nbuddy-24.png"
    ],
    "browser_action": {
        "default_icon": ".\/icons\/nbuddy-24.png",
        "default_title": "NoteBook Buddy",
        "default_popup": ".\/popup\/nbuddy_popup.html"
    },
    "content_scripts": [
        {
            "matches": [
                "*:\/\/*.github.com\/*"
            ],
            "js": [
                ".\/dependencies\/jquery.js",
                ".\/content_scripts\/nbuddy.js"
            ]
        }
    ]
}