Coding Interview Timer

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

Co to jest Coding Interview Timer?

Coding Interview Timer to rozszerzenie Chrome opracowane przez Tek Dev, a jego główną funkcją jest „A timer to track your progress for practice coding interview questions online.”.

Zrzuty ekranu rozszerzenia

screenshot
screenshot
screenshot

Pobierz plik CRX rozszerzenia Coding Interview Timer

Pobierz pliki rozszerzeń Coding Interview Timer w formacie crx, zainstaluj ręcznie rozszerzenia Chrome w przeglądarce lub udostępnij pliki crx znajomym, aby łatwo zainstalować rozszerzenia Chrome.

Instrukcja Użytkowania Rozszerzenia

                        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.                    

Podstawowe informacje o rozszerzeniu

Nazwa Coding Interview Timer Coding Interview Timer
ID ehlokjblibonmhonjhhmffclbhapkmnk
Oficjalny URL https://chromewebstore.google.com/detail/coding-interview-timer/ehlokjblibonmhonjhhmffclbhapkmnk
Opis A timer to track your progress for practice coding interview questions online.
Rozmiar pliku 365 KB
Liczba instalacji 136
Aktualna Wersja 0.1.0
Ostatnia Aktualizacja 2020-08-04
Data Publikacji 2020-08-04
Ocena 5.00/5 Łącznie 2 Oceny
Deweloper Tek Dev
E-mail [email protected]
Typ Płatności free
Strona Rozszerzenia https://www.buymeacoffee.com/interviewtimer
Adres URL Strony Pomocy https://www.buymeacoffee.com/interviewtimer
Obsługiwane Języki 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\/*"
    ]
}