NoteBook Buddy

Provides a helping hand when using Jupyter NoteBooks

Wat is NoteBook Buddy?

NoteBook Buddy is een Chrome-extensie ontwikkeld door iArunava, en de belangrijkste functie is "Provides a helping hand when using Jupyter NoteBooks".

Extensie Screenshots

screenshot

Download het CRX-bestand van de extensie NoteBook Buddy

Download NoteBook Buddy-extensiebestanden in crx-indeling, installeer Chrome-extensies handmatig in de browser of deel de crx-bestanden met vrienden om Chrome-extensies eenvoudig te installeren.

Instructies voor het Gebruik van de Extensie

                        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!                    

Basisinformatie over de Extensie

Naam NoteBook Buddy NoteBook Buddy
ID kmhoiofjdpbiodaggadcibdkicfgplcl
Officiële URL https://chrome.google.com/webstore/detail/notebook-buddy/kmhoiofjdpbiodaggadcibdkicfgplcl
Beschrijving Provides a helping hand when using Jupyter NoteBooks
Bestandsgrootte 164 KB
Aantal Installaties 937
Huidige Versie 0.3
Laatst Bijgewerkt 2018-11-15
Publicatiedatum 2018-11-15
Beoordeling 4.67/5 Totaal 3 Beoordelingen
Ontwikkelaar iArunava
E-mail [email protected]
Betalingswijze free
Ondersteunde Talen 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"
            ]
        }
    ]
}