NoteBook Buddy

Provides a helping hand when using Jupyter NoteBooks

Vad är NoteBook Buddy?

NoteBook Buddy är en Chrome-tillägg utvecklad av iArunava, och dess huvudfunktion är "Provides a helping hand when using Jupyter NoteBooks".

Tilläggsskärmbilder

screenshot

Ladda ner NoteBook Buddy-förlängningens CRX-fil

Ladda ner NoteBook Buddy-filändelser i crx-format, installera Chrome-tillägg manuellt i webbläsaren eller dela crx-filerna med vänner för att enkelt installera Chrome-tillägg.

Användarmanual för Tillägg

                        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!                    

Grundläggande Information om Tillägg

Namn NoteBook Buddy NoteBook Buddy
ID kmhoiofjdpbiodaggadcibdkicfgplcl
Officiell webbadress https://chrome.google.com/webstore/detail/notebook-buddy/kmhoiofjdpbiodaggadcibdkicfgplcl
Beskrivning Provides a helping hand when using Jupyter NoteBooks
Filstorlek 164 KB
Antal Installationer 937
Aktuell Version 0.3
Senast Uppdaterad 2018-11-15
Publiceringsdatum 2018-11-15
Betyg 4.67/5 Totalt 3 Betyg
Utvecklare iArunava
E-post [email protected]
Betalningssätt free
Stödda Språk 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"
            ]
        }
    ]
}