LeetCode Video Solutions
Watch free LeetCode video ▶ solutions on the problem page itself.
LeetCode Video Solutions란 무엇입니까?
LeetCode Video Solutions은(는) https://soumya.dev에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Watch free LeetCode video ▶ solutions on the problem page itself."입니다.
확장 프로그램 스크린샷
LeetCode Video Solutions 확장 프로그램 CRX 파일 다운로드
크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.
확장 프로그램 사용 설명서
MASSIVE UPDATE (again) 🎉: I have completely updated the extension to work with the NEW UI of LeetCode, including the dynamic UI layout. This has been long time coming and has been requested so many times by you guys. Thanks for supporting the extension so much and yeah, keep LeetCoding! (Stay tuned for more new exciting features) With LeetCode Video Solutions extension, you can watch helpful video solutions of a problem without leaving the problem page! Now you don't have to be distracted by watching cat videos on YouTube when you should be solving a LeetCode problem! When using the extension, you can see the solution videos' duration, upload date, views, channel and other information. The solutions are sourced from all over the internet and they are in different programming languages and cover different solving techniques and algorithms. Using Firefox?: https://addons.mozilla.org/en-US/firefox/addon/leetcode-video-solutions/ Report any bugs/ suggest features to the developer: Soumya (@geekysrm) on Twitter 🐜 Don't forget to give a review on the Reviews tab if this extension helped you! :) ⭐ Buy Me a Coffee if you really love this and want to support me: https://coffee.soumya.dev/ ☕
확장 프로그램 기본 정보
이름 | LeetCode Video Solutions |
ID | ilnmgkahgjdpkoliooildngldmilhelm |
공식 URL | https://chromewebstore.google.com/detail/leetcode-video-solutions/ilnmgkahgjdpkoliooildngldmilhelm |
설명 | Watch free LeetCode video ▶ solutions on the problem page itself. |
파일 크기 | 84.69 KB |
설치 횟수 | 23,013 |
현재 버전 | 5.0.3 |
최근 업데이트 | 2023-12-21 |
출시 날짜 | 2020-12-12 |
평점 | 4.43/5 총 61 개의 평점 |
개발자 | https://soumya.dev |
이메일 | [email protected] |
결제 유형 | free |
확장 프로그램 웹 사이트 | https://soumya.dev/leetcode-video-solutions |
지원되는 언어 | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "LeetCode Video Solutions", "description": "Watch free LeetCode video \u25b6 solutions on the problem page itself.", "version": "5.0.3", "icons": { "16": "icons\/icon16.png", "48": "icons\/icon48.png", "128": "icons\/icon128.png" }, "permissions": [ "*:\/\/leetcode.com\/*", "*:\/\/youtube-scrape.soumyaranjanra2.repl.co\/", "*:\/\/*.soumya.dev", "storage" ], "background": { "service_worker": "background.js" }, "content_scripts": [ { "matches": [ "*:\/\/leetcode.com\/problems\/*" ], "css": [ "vendor\/lite-yt-embed.css", "app.css" ], "js": [ "vendor\/webcomponents.js", "vendor\/lite-yt-embed.js", "app.js" ], "run_at": "document_end" } ], "manifest_version": 3, "content_security_policy": [], "host_permissions": [ "*:\/\/leetcode.com\/*", "*:\/\/youtube-scrape.soumyaranjanra2.repl.co\/", "*:\/\/*.soumya.dev" ] } |