NoteView for Jupyter
Easily share results from your local jupyter notebooks
什么是NoteView for Jupyter?
NoteView for Jupyter是由https://noteview.co开发的Chrome扩展程序,该扩展的主要功能是“Easily share results from your local jupyter notebooks”。
扩展截图
下载NoteView for Jupyter扩展crx文件
下载NoteView for Jupyter扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。
扩展使用说明
Easily select the cells you want to highlight, and then convert into a beautiful shareable link for your team and clients (with ability to comment). Become a more productive data scientists and communicate the results of your analysis easily! No need to spend minutes to copy paste different screenshots - with this extension it takes a minute to create a beautiful report. You can also export as PDF or a PNG to share as a message. This extension works on any local running Jupyter notebook (with plans to add more support shortly).
扩展基本信息
名称 | NoteView for Jupyter |
ID | aahgmjlaldifaebpcnlnifgehafnelbj |
官方URL | https://chromewebstore.google.com/detail/noteview-for-jupyter/aahgmjlaldifaebpcnlnifgehafnelbj |
简介 | Easily share results from your local jupyter notebooks |
文件大小 | 237 KB |
安装次数 | 138 |
当前版本 | 0.3 |
更新时间 | 2020-12-10 |
上架时间 | 2020-12-09 |
评分 | 5.00/5 共3次评分 |
开发者 | https://noteview.co |
电子邮箱 | [email protected] |
付费类型 | free |
扩展官网 | https://noteview.co |
支持的语言 | en-US |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "NoteView for Jupyter", "version": "0.3", "description": "Easily share results from your local jupyter notebooks", "icons": { "128": "Icon-128.png", "48": "Icon-48.png", "16": "Icon-16.png" }, "page_action": { "default_icon": "Icon-48.png", "default_title": "PageFontStyle" }, "background": { "scripts": [ "background.js" ], "persistent": false }, "content_scripts": [ { "matches": [ "http:\/\/localhost\/*" ], "js": [ "jquery-3.5.1.min.js", "content.js", "editor.js", "editor_inline_code.js", "supabase.min.js", "html2canvas.min.js" ], "css": [ "content.css" ] } ], "permissions": [ "storage", "http:\/\/localhost\/*", "https:\/\/xrw4xyfdrb.execute-api.us-east-1.amazonaws.com\/" ], "content_security_policy": "script-src 'self' https:\/\/w.appzi.io https:\/\/cdnjs.cloudflare.com https:\/\/stackpath.bootstrapcdn.com\/; object-src 'self';" } |