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"입니다.
확장 프로그램 스크린샷
LeetCode Video Soltuions(New Ui) 확장 프로그램 CRX 파일 다운로드
크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.
확장 프로그램 사용 설명서
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) |
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 |
이메일 | [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" } } |