LMT Zeppelin Boost
Improving Zeppelin on Chromium at once.
什么是LMT Zeppelin Boost?
LMT Zeppelin Boost是由LMT Team开发的Chrome扩展程序,该扩展的主要功能是“Improving Zeppelin on Chromium at once.”。
扩展截图
下载LMT Zeppelin Boost扩展crx文件
下载LMT Zeppelin Boost扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。
扩展使用说明
**PLEASE NOTE: THIS EXTENSION IS STILL IN BETA DEVELOPMENT STATE**
Improving Zeppelin experience on Chromium browser.
- Read JSON notebook by opening JSON file on browser.
- Speed up Zeppelin by removing unnecessary effects, web components,…
- Boost editor is embed as separate window. To activate, click on "Open with Boost editor" next to the setting icon in a paragraph. Ctrl + S to manually save the paragraph.
Warning: Boost editor icon may not appear and need you to refresh the page (F5). I will fix this later.
Changelogs:
0.1.5
- Fix black background and black texts while Windows is in light theme.
- Fix output image out of view due to being oversized.
0.1.4
- Fix code format issues (indent, wrapping) when reading JSON notebook. 扩展基本信息
| 名称 | |
| ID | jpgkjneapajhoilcdcikmmbdoolchaai |
| 官方URL | https://chromewebstore.google.com/detail/lmt-zeppelin-boost/jpgkjneapajhoilcdcikmmbdoolchaai |
| 简介 | Improving Zeppelin on Chromium at once. |
| 文件大小 | 3.05 MB |
| 安装次数 | 75 |
| 当前版本 | 0.1.5 |
| 更新时间 | 2023-05-12 |
| 上架时间 | 2019-08-17 |
| 开发者 | LMT Team |
| 电子邮箱 | [email protected] |
| 付费类型 | free |
| 支持的语言 | en |
| manifest.json | |
{
"update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
"name": "LMT Zeppelin Boost",
"version": "0.1.5",
"manifest_version": 3,
"description": "Improving Zeppelin on Chromium at once.",
"homepage_url": "https:\/\/www.facebook.com\/roggertanvus",
"icons": {
"16": "icons\/icon32.png",
"48": "icons\/icon48.png",
"128": "icons\/icon128.png"
},
"content_scripts": [
{
"matches": [
"http:\/\/localhost:8080\/*"
],
"js": [
"domains\/localhost\/InsertAsScriptTag.js"
],
"css": [
"domains\/localhost\/style\/local.css"
],
"run_at": "document_idle"
},
{
"matches": [
"file:\/\/\/*.json",
"http:\/\/*\/*.json",
"https:\/\/*\/*.json"
],
"js": [
"min\/domains\/json\/inject.min.js"
],
"css": [
"domains\/json\/style\/notebookreader.css",
"lib\/styles\/jquery.dataTables.css"
],
"run_at": "document_idle"
}
],
"action": {
"default_title": "LMT Zeppelin Boost"
},
"host_permissions": [
"http:\/\/localhost:8080\/*",
"file:\/\/\/*.json",
"http:\/\/*\/*.json",
"https:\/\/*\/*.json"
],
"web_accessible_resources": [
{
"resources": [
"lib\/*",
"lib\/styles\/*",
"domains\/editor\/editor.html",
"domains\/editor\/vs\/*",
"domains\/editor\/style\/*",
"min\/domains\/editor\/inject.min.js",
"min\/domains\/localhost\/inject.min.js"
],
"matches": [
" | |