Leetcode Custom Themes

Allows you to change Leetcode Code Editor Themes

Leetcode Custom Themes란 무엇입니까?

Leetcode Custom Themes은(는) Vishnuvardhan S에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Allows you to change Leetcode Code Editor Themes"입니다.

확장 프로그램 스크린샷

screenshot
screenshot
screenshot

Leetcode Custom Themes 확장 프로그램 CRX 파일 다운로드

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

확장 프로그램 사용 설명서

                        With this extension, you may personalize the Leetcode Code Editor with a number of different themes.

New features:

New Leetcode UI:
Added support for new Leetcode UI. Provides a list of monaco based themes. 

Old Leetcode UI:
Added two new themes, "Google Interview - Light and Dark" which simulates Google Doc where you will have no color schemes.                    

확장 프로그램 기본 정보

이름 Leetcode Custom Themes Leetcode Custom Themes
ID nkbhfhhjppjiflcboogbiahjlknaehhl
공식 URL https://chromewebstore.google.com/detail/leetcode-custom-themes/nkbhfhhjppjiflcboogbiahjlknaehhl
설명 Allows you to change Leetcode Code Editor Themes
파일 크기 131 KB
설치 횟수 473
현재 버전 2.0.0
최근 업데이트 2022-12-24
출시 날짜 2021-12-08
평점 5.00/5 총 7 개의 평점
개발자 Vishnuvardhan S
이메일 [email protected]
결제 유형 free
확장 프로그램 웹 사이트 https://github.com/vishnuvardhan-s/leetcode-custom-themes
도움말 페이지 URL https://github.com/vishnuvardhan-s/leetcode-custom-themes/issues
지원되는 언어 en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Leetcode Custom Themes",
    "version": "2.0.0",
    "manifest_version": 3,
    "description": "Allows you to change Leetcode Code Editor Themes",
    "icons": {
        "16": "icons\/icon16.png",
        "32": "icons\/icon32.png",
        "48": "icons\/icon48.png",
        "128": "icons\/icon128.png"
    },
    "author": "Vishnuvardhan S",
    "homepage_url": "https:\/\/github.com\/vishnuvardhan-s\/leetcode-custom-themes",
    "action": {
        "default_icon": "icons\/icon32.png",
        "default_popup": "popup.html",
        "default_title": "Leetcode Custom Themes"
    },
    "background": {
        "service_worker": "background.js"
    },
    "permissions": [
        "storage",
        "scripting",
        "tabs"
    ],
    "host_permissions": [
        "https:\/\/leetcode.com\/**"
    ],
    "content_scripts": [
        {
            "matches": [
                "https:\/\/leetcode.com\/*"
            ],
            "js": [
                "inject.js"
            ],
            "all_frames": true
        }
    ],
    "web_accessible_resources": [
        {
            "resources": [
                "content.js",
                "themes\/*.json"
            ],
            "matches": [
                "https:\/\/leetcode.com\/*"
            ]
        }
    ]
}