LMT Zeppelin Boost

Improving Zeppelin on Chromium at once.

LMT Zeppelin Boost क्या है?

LMT Zeppelin Boost LMT Team द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Improving Zeppelin on Chromium at once."।

एक्सटेंशन स्क्रीनशॉट्स

screenshot
screenshot

एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें

crx प्रारूप में LMT Zeppelin Boost एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ 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": [
                ""
            ]
        }
    ]
}