LMT Zeppelin Dark Theme

Dark theme for local Zeppelin or Zepl.

什么是LMT Zeppelin Dark Theme?

LMT Zeppelin Dark Theme是由LMT Team开发的Chrome扩展程序,该扩展的主要功能是“Dark theme for local Zeppelin or Zepl.”。

扩展截图

screenshot
screenshot

下载LMT Zeppelin Dark Theme扩展crx文件

下载LMT Zeppelin Dark Theme扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。

扩展使用说明

                        Support dark theme for Zeppelin (localhost, 8080 port) and zepl.com website. 

Changelog:
0.1.4
- Local 
    - Background color fix for warning box (truncate warning box, for instance).  

- Zepl.com 
(No changes).  

0.1.3
- Zepl
    - https://www.zepl.com/account "Edit Account" button fix.
    - Table display fix.
    - Notebook circle loader icon now with dark background.
    - Code comment color update.
    - Fix color of table/chart settings.

- Local
    - Fix dark text in header drop down (Notebook, profile).
    - Fix setting panel color.
    - Text color of button tooltip in paragraph fix.
    - Fix drop down download text color.

0.1.2
- Zepl.com 
    - Fix drop down, inputs may have white background with white text when being hovered. 

- Local Zeppelin  
    - (No changes) 

0.1.1
- Zepl.com 
    - Fix text color in  tag.  
    - Input background was set to black with white text color as default.  
    - Scalable font-size for codes in paragraph.  
    - Code line with dark color.  
    - Improve styles.  

- Local Zeppelin  
    - Code line with dark color.  
    - Code colors for keywords, functions,… were improved.  
    - Improve styles.                    

扩展基本信息

名称 LMT Zeppelin Dark Theme LMT Zeppelin Dark Theme
ID pnkanfjiphfdmkccpnagpgkegcnmmiih
官方URL https://chromewebstore.google.com/detail/lmt-zeppelin-dark-theme/pnkanfjiphfdmkccpnagpgkegcnmmiih
简介 Dark theme for local Zeppelin or Zepl.
文件大小 30.95 KB
安装次数 59
当前版本 0.1.4
更新时间 2019-07-23
上架时间 2019-07-23
评分 5.00/5 共2次评分
开发者 LMT Team
电子邮箱 [email protected]
付费类型 free
扩展官网 https://blazorutils.wordpress.com/category/others
支持的语言 en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "LMT Zeppelin Dark Theme",
    "version": "0.1.4",
    "manifest_version": 2,
    "description": "Dark theme for local Zeppelin or Zepl.",
    "homepage_url": "https:\/\/www.facebook.com\/roggertanvus",
    "icons": {
        "16": "icons\/icon32.png",
        "48": "icons\/icon48.png",
        "128": "icons\/icon128.png"
    },
    "content_scripts": [
        {
            "matches": [
                "https:\/\/www.zepl.com\/*"
            ],
            "js": [
                "inject.js"
            ],
            "css": [
                "zepl.css"
            ]
        },
        {
            "matches": [
                "http:\/\/localhost:8080\/*"
            ],
            "js": [
                "inject.js"
            ],
            "css": [
                "local.css"
            ]
        }
    ],
    "browser_action": {
        "default_title": "LMT Zeppelin Dark Theme"
    },
    "permissions": [
        "https:\/\/www.zepl.com\/*",
        "http:\/\/localhost:8080\/*"
    ],
    "web_accessible_resources": [
        "images\/zepLogo.png"
    ]
}