Coding Interview Timer

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

什么是Coding Interview Timer?

Coding Interview Timer是由Tek Dev开发的Chrome扩展程序,该扩展的主要功能是“A timer to track your progress for practice coding interview questions online.”。

扩展截图

screenshot
screenshot
screenshot

下载Coding Interview Timer扩展crx文件

下载Coding Interview Timer扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。

扩展使用说明

                        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.                    

扩展基本信息

名称 Coding Interview Timer Coding Interview Timer
ID ehlokjblibonmhonjhhmffclbhapkmnk
官方URL https://chromewebstore.google.com/detail/coding-interview-timer/ehlokjblibonmhonjhhmffclbhapkmnk
简介 A timer to track your progress for practice coding interview questions online.
文件大小 365 KB
安装次数 136
当前版本 0.1.0
更新时间 2020-08-04
上架时间 2020-08-04
评分 5.00/5 共2次评分
开发者 Tek Dev
电子邮箱 [email protected]
付费类型 free
扩展官网 https://www.buymeacoffee.com/interviewtimer
帮助页面URL https://www.buymeacoffee.com/interviewtimer
支持的语言 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\/*"
    ]
}