NoteBook Buddy
Provides a helping hand when using Jupyter NoteBooks
What is NoteBook Buddy?
NoteBook Buddy is a Chrome extension developed by iArunava, and its main feature is "Provides a helping hand when using Jupyter NoteBooks".
Extension Screenshots
Download NoteBook Buddy Extension CRX File
Download NoteBook Buddy extension files in crx format, manually install Chrome extensions in the browser, or share the crx files with friends to easily install Chrome extensions.
Extension Usage Instructions
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!
Extension Basic Information
Name | |
ID | kmhoiofjdpbiodaggadcibdkicfgplcl |
Official URL | https://chrome.google.com/webstore/detail/notebook-buddy/kmhoiofjdpbiodaggadcibdkicfgplcl |
Description | Provides a helping hand when using Jupyter NoteBooks |
File Size | 164 KB |
Installation Count | 937 |
Current Version | 0.3 |
Last Updated | 2018-11-15 |
Publish Date | 2018-11-15 |
Rating | 4.67/5 Total 3 Ratings |
Developer | iArunava |
[email protected] | |
Payment Type | free |
Supported Languages | 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" ] } ] } |