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