Coding Interview Timer

A timer to track your progress for practice coding interview questions online.

What is Coding Interview Timer?

Coding Interview Timer is a Chrome extension developed by Tek Dev, and its main feature is "A timer to track your progress for practice coding interview questions online.".

Extension Screenshots

screenshot
screenshot
screenshot

Download Coding Interview Timer Extension CRX File

Download Coding Interview Timer extension files in crx format, manually install Chrome extensions in the browser, or share the crx files with friends to easily install Chrome extensions.

Extension Usage Instructions

                        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.                    

Extension Basic Information

Name Coding Interview Timer Coding Interview Timer
ID ehlokjblibonmhonjhhmffclbhapkmnk
Official URL https://chromewebstore.google.com/detail/coding-interview-timer/ehlokjblibonmhonjhhmffclbhapkmnk
Description A timer to track your progress for practice coding interview questions online.
File Size 365 KB
Installation Count 136
Current Version 0.1.0
Last Updated 2020-08-04
Publish Date 2020-08-04
Rating 5.00/5 Total 2 Ratings
Developer Tek Dev
Email [email protected]
Payment Type free
Extension Website https://www.buymeacoffee.com/interviewtimer
Help Page URL https://www.buymeacoffee.com/interviewtimer
Supported Languages 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\/*"
    ]
}