NoteBook Buddy
Provides a helping hand when using Jupyter NoteBooks
Hvad er NoteBook Buddy?
NoteBook Buddy er en Chrome-udvidelse udviklet af iArunava, og dens hovedfunktion er "Provides a helping hand when using Jupyter NoteBooks".
Udvidelsesskærmbilleder
Download NoteBook Buddy-udvidelses-CRX-fil
Download NoteBook Buddy-udvidelsesfiler i crx-format, installer Chrome-udvidelser manuelt i browseren eller del crx-filer med venner for nemt at installere Chrome-udvidelser.
Brugsanvisning til Udvidelsen
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æggende oplysninger om udvidelsen
Navn | |
ID | kmhoiofjdpbiodaggadcibdkicfgplcl |
Officiel URL | https://chrome.google.com/webstore/detail/notebook-buddy/kmhoiofjdpbiodaggadcibdkicfgplcl |
Beskrivelse | Provides a helping hand when using Jupyter NoteBooks |
Filstørrelse | 164 KB |
Antal Installationer | 937 |
Nuværende Version | 0.3 |
Senest Opdateret | 2018-11-15 |
Udgivelsesdato | 2018-11-15 |
Bedømmelse | 4.67/5 Samlet 3 Bedømmelser |
Udvikler | iArunava |
[email protected] | |
Betalingsmetode | free |
Understøttede Sprog | 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" ] } ] } |