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 파일 다운로드
크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.
확장 프로그램 사용 설명서
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';" } |