Jupyter Notebook Viewer
Jupyter Notebook Viewer
什么是Jupyter Notebook Viewer?
Jupyter Notebook Viewer是由imvladikon开发的Chrome扩展程序,该扩展的主要功能是“Jupyter Notebook Viewer”。
扩展截图
下载Jupyter Notebook Viewer扩展crx文件
下载Jupyter Notebook Viewer扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。
扩展使用说明
The extension that could renders local jupyter file (*.ipynb).
Renders local and remote URLs
✔ Granular access to remote origins
✔ Full control over the compiler options
✔ Themes
✔ Auto reload on file change
✔ Syntax highlighted code blocks
✔ Table of Contents (TOC)
✔ MathJax support
how to install: https://www.youtube.com/watch?v=izGeP2wyOIk
demonstration: https://www.youtube.com/watch?v=x0nYGZDbEoY 扩展基本信息
| 名称 | |
| ID | ocabfdicbcamoonfhalkdojedklfcjmf |
| 官方URL | https://chromewebstore.google.com/detail/jupyter-notebook-viewer/ocabfdicbcamoonfhalkdojedklfcjmf |
| 简介 | Jupyter Notebook Viewer |
| 文件大小 | 1.74 MB |
| 安装次数 | 10,000 |
| 当前版本 | 0.6 |
| 更新时间 | 2022-05-01 |
| 上架时间 | 2020-05-19 |
| 评分 | 4.63/5 共30次评分 |
| 开发者 | imvladikon |
| 电子邮箱 | [email protected] |
| 付费类型 | free |
| 扩展官网 | https://github.com/imvladikon/jupyter-notebook-viewer |
| 帮助页面URL | https://github.com/imvladikon/jupyter-notebook-viewer |
| 支持的语言 | en |
| manifest.json | |
{
"update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
"manifest_version": 2,
"name": "Jupyter Notebook Viewer",
"version": "0.6",
"description": "Jupyter Notebook Viewer",
"browser_action": {
"default_icon": {
"19": "\/icons\/icon19.png",
"38": "\/icons\/icon38.png"
},
"default_title": "Jupyter Notebook Viewer",
"default_popup": "\/popup\/index.html"
},
"options_page": "\/options\/index.html",
"background": {
"scripts": [
"\/vendor\/marked.min.js",
"\/vendor\/remark.min.js",
"\/background\/compilers\/marked.js",
"\/background\/compilers\/remark.js",
"\/background\/storage.js",
"\/background\/webrequest.js",
"\/background\/detect.js",
"\/background\/inject.js",
"\/background\/messages.js",
"\/background\/mathjax.js",
"\/background\/xhr.js",
"\/background\/index.js"
],
"persistent": false
},
"web_accessible_resources": [
"\/themes\/github.css",
"\/themes\/github-dark.css",
"\/themes\/godspeed.css",
"\/themes\/new-modern.css",
"\/themes\/torpedo.css",
"\/themes\/vostok.css",
"\/themes\/ghostwriter.css",
"\/themes\/radar.css",
"\/themes\/foghorn.css",
"\/themes\/markdown.css",
"\/themes\/markedapp-byword.css",
"\/themes\/solarized-dark.css",
"\/themes\/solarized-light.css",
"\/themes\/screen.css",
"\/themes\/markdown5.css",
"\/themes\/markdown6.css",
"\/themes\/markdown7.css",
"\/themes\/markdown8.css",
"\/themes\/markdown9.css",
"\/themes\/markdown-alt.css"
],
"icons": {
"16": "\/icons\/icon16.png",
"48": "\/icons\/icon48.png",
"128": "\/icons\/icon128.png"
},
"homepage_url": "https:\/\/chrome.google.com\/webstore\/detail\/",
"permissions": [
"storage",
"file:\/\/\/*"
],
"optional_permissions": [
"https:\/\/*\/",
"http:\/\/*\/",
"*:\/\/*\/",
"webRequest",
"webRequestBlocking"
]
} | |