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
官方網址 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\/*"
    ]
}