Coding Interview Timer
A timer to track your progress for practice coding interview questions online.
ما هو Coding Interview Timer؟
Coding Interview Timer هو إضافة Chrome تم تطويرها بواسطة Tek Dev، والميزة الرئيسية لها هي "A timer to track your progress for practice coding interview questions online.".
لقطات شاشة التمديد
تحميل ملف CRX للإضافة Coding Interview Timer
قم بتنزيل ملفات الامتداد Coding Interview Timer بتنسيق crx ، وقم بتثبيت الامتدادات يدويًا في متصفح Chrome ، أو شارك ملفات crx مع الأصدقاء لتثبيت الامتدادات بسهولة.
تعليمات استخدام التمديد
A simple tool to track your progress to solve coding/technical interview questions. There is a timer (45 or 30 minutes for easy and medium questions) and a stage progression bar to indicate which problem solving stage you should be.
معلومات أساسية عن التمديد
الاسم | Coding Interview Timer |
ID | ehlokjblibonmhonjhhmffclbhapkmnk |
عنوان URL الرسمي | https://chromewebstore.google.com/detail/coding-interview-timer/ehlokjblibonmhonjhhmffclbhapkmnk |
الوصف | A timer to track your progress for practice coding interview questions online. |
حجم الملف | 365 KB |
عدد التثبيتات | 136 |
النسخة الحالية | 0.1.0 |
آخر تحديث | 2020-08-04 |
تاريخ النشر | 2020-08-04 |
تقييم | 5.00/5 مجموع تقييمات 2 |
المطور | Tek Dev |
البريد الإلكتروني | [email protected] |
نوع الدفع | free |
موقع الإضافة | https://www.buymeacoffee.com/interviewtimer |
عنوان صفحة المساعدة | https://www.buymeacoffee.com/interviewtimer |
اللغات المدعومة | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "Coding Interview Timer", "description": "A timer to track your progress for practice coding interview questions online.", "version": "0.1.0", "homepage_url": "https:\/\/www.buymeacoffee.com\/interviewtimer", "icons": { "16": "icon16.png", "48": "icon48.png", "128": "icon128.png" }, "browser_action": { "default_icon": "icon128.png", "default_title": "Coding Interview Timer" }, "background": { "scripts": [ ".\/jquery.js", "background.js" ] }, "content_scripts": [ { "matches": [ "https:\/\/leetcode.com\/*", "https:\/\/www.hackerrank.com\/*" ], "all_frames": true, "js": [ ".\/content.js", ".\/jquery.js" ], "run_at": "document_end" } ], "permissions": [ "tabs" ], "content_security_policy": "script-src 'self' 'unsafe-eval'; object-src 'self'", "web_accessible_resources": [ "index.html", "\/static\/*" ] } |