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 파일 다운로드

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

확장 프로그램 사용 설명서

                        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"
    ]
}