NoteBook Buddy
Provides a helping hand when using Jupyter NoteBooks
Was ist NoteBook Buddy?
NoteBook Buddy ist eine Chrome-Erweiterung, die von iArunava entwickelt wurde, und ihr Hauptmerkmal ist "Provides a helping hand when using Jupyter NoteBooks".
Erweiterungsscreenshots
NoteBook Buddy-Erweiterungs-CRX-Datei herunterladen
Laden Sie NoteBook Buddy-Erweiterungsdateien im crx-Format herunter, installieren Sie Chrome-Erweiterungen manuell im Browser oder teilen Sie die crx-Dateien mit Freunden, um Chrome-Erweiterungen einfach zu installieren.
Anleitung zur Verwendung der Erweiterung
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!
Grundlegende Informationen zur Erweiterung
Name | |
ID | kmhoiofjdpbiodaggadcibdkicfgplcl |
Offizielle URL | https://chrome.google.com/webstore/detail/notebook-buddy/kmhoiofjdpbiodaggadcibdkicfgplcl |
Beschreibung | Provides a helping hand when using Jupyter NoteBooks |
Dateigröße | 164 KB |
Installationsanzahl | 937 |
Aktuelle Version | 0.3 |
Letztes Update | 2018-11-15 |
Veröffentlichungsdatum | 2018-11-15 |
Bewertung | 4.67/5 Insgesamt 3 Bewertungen |
Entwickler | iArunava |
[email protected] | |
Zahlungsart | free |
Unterstützte Sprachen | 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" ] } ] } |