LMT Zeppelin Boost

Improving Zeppelin on Chromium at once.

LMT Zeppelin Boost là gì?

LMT Zeppelin Boost là một tiện ích mở rộng Chrome được phát triển bởi LMT Team, và tính năng chính của nó là "Improving Zeppelin on Chromium at once.".

Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng

screenshot
screenshot

Tải xuống tệp CRX của tiện ích mở rộng LMT Zeppelin Boost

Tải xuống các tệp mở rộng LMT Zeppelin Boost dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.

Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng

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

Thông Tin Cơ Bản về Tiện Ích Mở Rộng

Tên LMT Zeppelin Boost LMT Zeppelin Boost
ID jpgkjneapajhoilcdcikmmbdoolchaai
URL Chính Thức https://chromewebstore.google.com/detail/lmt-zeppelin-boost/jpgkjneapajhoilcdcikmmbdoolchaai
Mô tả Improving Zeppelin on Chromium at once.
Kích Thước Tệp 3.05 MB
Số Lần Cài Đặt 75
Phiên Bản Hiện Tại 0.1.5
Cập Nhật Lần Cuối 2023-05-12
Ngày Phát Hành 2019-08-17
Nhà Phát Triển LMT Team
Email [email protected]
Loại Thanh Toán free
Ngôn Ngữ Được Hỗ Trợ 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": [
                ""
            ]
        }
    ]
}