NoteBook Buddy
Provides a helping hand when using Jupyter NoteBooks
什麼是NoteBook Buddy?
NoteBook Buddy是由iArunava開發的Chrome擴展程式,該擴展的主要功能是“Provides a helping hand when using Jupyter NoteBooks”。
擴展截圖
下載NoteBook Buddy擴展crx文件
下載NoteBook Buddy擴展crx格式的文件,手動將Chrome擴充功能安裝到瀏覽器中,也可以將crx文件分享給朋友,輕鬆安裝Chrome擴充功能。
擴展使用說明
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!
擴展基本資訊
名稱 | |
ID | kmhoiofjdpbiodaggadcibdkicfgplcl |
官方網址 | https://chrome.google.com/webstore/detail/notebook-buddy/kmhoiofjdpbiodaggadcibdkicfgplcl |
簡介 | Provides a helping hand when using Jupyter NoteBooks |
檔案大小 | 164 KB |
安裝次數 | 937 |
目前版本 | 0.3 |
更新時間 | 2018-11-15 |
上架時間 | 2018-11-15 |
評分 | 4.67/5 共 3 次評分 |
開發者 | iArunava |
電子郵箱 | [email protected] |
付費類型 | free |
支援的語言 | 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" ] } ] } |