Coding Interview Timer

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

Qu'est-ce que Coding Interview Timer ?

Coding Interview Timer est une extension Chrome développée par Tek Dev, et sa fonction principale est "A timer to track your progress for practice coding interview questions online.".

Captures d'Écran de l'Extension

screenshot
screenshot
screenshot

Télécharger le fichier CRX de l'extension Coding Interview Timer

Téléchargez les fichiers d'extension Coding Interview Timer au format crx, installez manuellement les extensions Chrome dans le navigateur ou partagez les fichiers crx avec des amis pour installer facilement les extensions Chrome.

Instructions d'Utilisation de l'Extension

                        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.                    

Informations de Base sur l'Extension

Nom Coding Interview Timer Coding Interview Timer
ID ehlokjblibonmhonjhhmffclbhapkmnk
URL Officiel https://chromewebstore.google.com/detail/coding-interview-timer/ehlokjblibonmhonjhhmffclbhapkmnk
Description A timer to track your progress for practice coding interview questions online.
Taille du Fichier 365 KB
Nombre d'Installations 136
Version Actuelle 0.1.0
Dernière Mise à Jour 2020-08-04
Date de Publication 2020-08-04
Évaluation 5.00/5 Total 2 Évaluations
Développeur Tek Dev
Email [email protected]
Type de Paiement free
Site Web de l'Extension https://www.buymeacoffee.com/interviewtimer
URL de la Page d'Aide https://www.buymeacoffee.com/interviewtimer
Langues Prises en Charge 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\/*"
    ]
}