LeetCode Video Soltuions(New Ui)

Watch Youtube video Solutions of Leetcode problems on the Leetcode page itself for free

什麼是LeetCode Video Soltuions(New Ui)?

LeetCode Video Soltuions(New Ui)是由mohammadshoeib00開發的Chrome擴展程式,該擴展的主要功能是“Watch Youtube video Solutions of Leetcode problems on the Leetcode page itself for free”。

擴展截圖

screenshot
screenshot
screenshot

下載LeetCode Video Soltuions(New Ui)擴展crx文件

下載LeetCode Video Soltuions(New Ui)擴展crx格式的文件,手動將Chrome擴充功能安裝到瀏覽器中,也可以將crx文件分享給朋友,輕鬆安裝Chrome擴充功能。

擴展使用說明

                        IMPORTANT NOTE: The extension is not working properly now due to recent changes in the LeetCode UI. I'll fix it as soon as I get time. Your cooperation will be helpful!

Watch LeetCode Video Solutions on the Leetcode page itself for free
Features:
. Adds a Button on the problem page which shows the video solutions when clicked.
. shows the the top 10 solutions of a problem from Youtube.
. Increases productivity.
LeetCode Video Solutions extension works with the  NEW UI  of Leetcode
With this extension You don't need to search for a video solution on youtube u can see it on the leetcode page itself.say goodbye to getting distracted on Youtube while searching for solutions!
The Videos are fetched from youtube and they're in all  programming languages.
Report any bugs or new features to the developer on LinkedIn(https://www.linkedin.com/in/mohammad-shoeib-55766a215/)
Don't forget to leave a review in the Review tab  :)
if u liked my work and want to support me : https://www.buymeacoffee.com/mohammadshD                    

擴展基本資訊

名稱 LeetCode Video Soltuions(New Ui) LeetCode Video Soltuions(New Ui)
ID chddldabdgijaaemjmgjifjjfmfpeaio
官方網址 https://chromewebstore.google.com/detail/leetcode-video-soltuionsn/chddldabdgijaaemjmgjifjjfmfpeaio
簡介 Watch Youtube video Solutions of Leetcode problems on the Leetcode page itself for free
檔案大小 15.77 KB
安裝次數 633
目前版本 1.0.0
更新時間 2023-07-30
上架時間 2023-05-26
評分 4.00/5 共 3 次評分
開發者 mohammadshoeib00
電子郵箱 [email protected]
付費類型 free
擴展官網 https://www.linkedin.com/in/mohammad-shoeib-55766a215/
說明頁面URL https://www.linkedin.com/in/mohammad-shoeib-55766a215/
隱私政策頁面URL https://www.freeprivacypolicy.com/live/9e04bca6-8635-43fb-9633-0f2232febb6c
支援的語言 en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 3,
    "name": "LeetCode Video Soltuions(New Ui)",
    "version": "1.0.0",
    "description": "Watch Youtube video Solutions of Leetcode problems on the Leetcode  page itself for free",
    "permissions": [
        "tabs",
        "background"
    ],
    "background": {
        "service_worker": "background.js"
    },
    "content_scripts": [
        {
            "matches": [
                "https:\/\/leetcode.com\/problems\/*"
            ],
            "js": [
                "App.js"
            ]
        }
    ],
    "action": {
        "default_popup": "popup.html",
        "default_icon": {
            "16": "images\/c.png",
            "48": "images\/c1.png",
            "128": "images\/c2.png"
        },
        "default_title": " my extension"
    }
}