LMT Zeppelin Boost

Improving Zeppelin on Chromium at once.

LMT Zeppelin Boost란 무엇입니까?

LMT Zeppelin Boost은(는) LMT Team에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Improving Zeppelin on Chromium at once."입니다.

확장 프로그램 스크린샷

screenshot
screenshot

LMT Zeppelin Boost 확장 프로그램 CRX 파일 다운로드

크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.

확장 프로그램 사용 설명서

                        **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.                    

확장 프로그램 기본 정보

이름 LMT Zeppelin Boost LMT Zeppelin Boost
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": [
                ""
            ]
        }
    ]
}