LeetCode Reminder
Reminder for leetcode practice.
LeetCode Reminder란 무엇입니까?
LeetCode Reminder은(는) Zich에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Reminder for leetcode practice."입니다.
확장 프로그램 스크린샷
LeetCode Reminder 확장 프로그램 CRX 파일 다운로드
크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.
확장 프로그램 사용 설명서
Practicing LeetCode for tech-job interviews? Use this reminder for constant reminders to review questions that you have previously done! The more you practice the better you become, and we are here to help you ace your next technical interview! After downloading the extension, whenever you attempt a leetcode question, the question will automatically be added to storage for later review. You can check back at the extension by clicking it to see the question suggested for review. Happy LeetCode grind, hope this helps!
확장 프로그램 기본 정보
이름 | LeetCode Reminder |
ID | cefbdpiapcpjjjdghhofmnfcpgdhcpec |
공식 URL | https://chromewebstore.google.com/detail/leetcode-reminder/cefbdpiapcpjjjdghhofmnfcpgdhcpec |
설명 | Reminder for leetcode practice. |
파일 크기 | 392 KB |
설치 횟수 | 866 |
현재 버전 | 1.0.2 |
최근 업데이트 | 2020-05-25 |
출시 날짜 | 2020-05-24 |
개발자 | Zich |
결제 유형 | free |
지원되는 언어 | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "LeetCode Reminder", "version": "1.0.2", "description": "Reminder for leetcode practice.", "permissions": [ "storage", "http:\/\/leetcode.com\/*", "http:\/\/worldclockapi.com\/api\/json\/utc\/now" ], "browser_action": { "default_popup": "popup.html", "default_icon": "128x128lcicon.png" }, "background": { "scripts": [ "background.js", "jquery-3.4.1.js" ], "persistent": false }, "icons": { "16": "128x128lcicon.png", "48": "128x128lcicon.png", "128": "128x128lcicon.png" }, "content_scripts": [ { "matches": [ "https:\/\/leetcode.com\/*" ], "js": [ "jquery-3.4.1.js", "contents.js" ] } ], "manifest_version": 2 } |