NoteBook Buddy
Provides a helping hand when using Jupyter NoteBooks
Apa itu NoteBook Buddy?
NoteBook Buddy adalah ekstensi Chrome yang dikembangkan oleh iArunava, dan fitur utamanya adalah "Provides a helping hand when using Jupyter NoteBooks".
Screenshot Ekstensi
Unduh Berkas CRX Ekstensi NoteBook Buddy
Unduh file ekstensi NoteBook Buddy dalam format crx, pasang ekstensi Chrome secara manual di peramban, atau bagikan file crx dengan teman untuk menginstal ekstensi Chrome dengan mudah.
Petunjuk Penggunaan Ekstensi
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!
Informasi Dasar Ekstensi
Nama | |
ID | kmhoiofjdpbiodaggadcibdkicfgplcl |
URL Resmi | https://chrome.google.com/webstore/detail/notebook-buddy/kmhoiofjdpbiodaggadcibdkicfgplcl |
Deskripsi | Provides a helping hand when using Jupyter NoteBooks |
Ukuran File | 164 KB |
Jumlah Instalasi | 937 |
Versi Saat Ini | 0.3 |
Terakhir Diperbarui | 2018-11-15 |
Tanggal Publikasi | 2018-11-15 |
Penilaian | 4.67/5 Total 3 Penilaian |
Pengembang | iArunava |
[email protected] | |
Tipe Pembayaran | free |
Bahasa yang Didukung | 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" ] } ] } |