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 |
官方URL | 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" ] } ] } |