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
官方網址 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"
    ]
}