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). 拡張機能の基本情報
| 名前 | |
| 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 |
| Eメール | [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';"
} | |