Coding Interview Timer

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

Cos'è Coding Interview Timer?

Coding Interview Timer è un'estensione di Chrome sviluppata da Tek Dev, e la sua funzione principale è "A timer to track your progress for practice coding interview questions online.".

Screenshot dell'Estensione

screenshot
screenshot
screenshot

Scarica il file CRX dell'estensione Coding Interview Timer

Scarica i file di estensione Coding Interview Timer in formato crx, installa manualmente le estensioni di Chrome nel browser o condividi i file crx con gli amici per installare facilmente le estensioni di Chrome.

Istruzioni per l'Uso dell'Estensione

                        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.                    

Informazioni di Base sull'Estensione

Nome Coding Interview Timer Coding Interview Timer
ID ehlokjblibonmhonjhhmffclbhapkmnk
URL Ufficiale https://chromewebstore.google.com/detail/coding-interview-timer/ehlokjblibonmhonjhhmffclbhapkmnk
Descrizione A timer to track your progress for practice coding interview questions online.
Dimensione del File 365 KB
Conteggio Installazioni 136
Versione Corrente 0.1.0
Ultimo Aggiornamento 2020-08-04
Data di Pubblicazione 2020-08-04
Valutazione 5.00/5 Totale 2 Valutazioni
Sviluppatore Tek Dev
Email [email protected]
Tipo di Pagamento free
Sito Web dell'Estensione https://www.buymeacoffee.com/interviewtimer
URL della Pagina di Aiuto https://www.buymeacoffee.com/interviewtimer
Lingue Supportate 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\/*"
    ]
}