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
公式URL 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
Eメール [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"
    }
}