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."

ภาพหน้าจอของส่วนขยาย

screenshot
screenshot
screenshot

ดาวน์โหลดไฟล์ CRX ของส่วนขยาย Coding Interview Timer

ดาวน์โหลดไฟล์ส่วนขยาย Coding Interview Timer ในรูปแบบ crx และติดตั้งส่วนขยาย Chrome ด้วยตนเองในเบราว์เซอร์หรือแชร์ไฟล์ crx กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย Chrome อย่างง่ายดาย

คำแนะนำในการใช้ส่วนขยาย

                        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 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
URL หน้าช่วยเหลือ 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\/*"
    ]
}