Coding Interview Timer

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

O que é Coding Interview Timer?

Coding Interview Timer é uma extensão do Chrome desenvolvida por Tek Dev, e sua principal característica é "A timer to track your progress for practice coding interview questions online.".

Capturas de Tela da Extensão

screenshot
screenshot
screenshot

Baixar o arquivo CRX da Extensão Coding Interview Timer

Baixe arquivos de extensão Coding Interview Timer no formato crx, instale manualmente as extensões do Chrome no navegador ou compartilhe os arquivos crx com amigos para instalar facilmente as extensões do Chrome.

Instruções de Uso da Extensão

                        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.                    

Informações Básicas da Extensão

Nome Coding Interview Timer Coding Interview Timer
ID ehlokjblibonmhonjhhmffclbhapkmnk
URL Oficial https://chromewebstore.google.com/detail/coding-interview-timer/ehlokjblibonmhonjhhmffclbhapkmnk
Descrição A timer to track your progress for practice coding interview questions online.
Tamanho do Arquivo 365 KB
Contagem de Instalações 136
Versão Atual 0.1.0
Última Atualização 2020-08-04
Data de Publicação 2020-08-04
Classificação 5.00/5 Total de 2 Avaliações
Desenvolvedor Tek Dev
Email [email protected]
Tipo de Pagamento free
Site da Extensão https://www.buymeacoffee.com/interviewtimer
URL da Página de Ajuda https://www.buymeacoffee.com/interviewtimer
Idiomas Suportados 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\/*"
    ]
}