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ファイルをダウンロード

Leetcode Custom Themes拡張子のファイルをcrx形式でダウンロードし、ブラウザにChrome拡張機能を手動でインストールするか、crxファイルを友達と共有して簡単にChrome拡張機能をインストールします。

拡張機能の使用方法

                        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
Eメール [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\/*"
            ]
        }
    ]
}