LeetCode Time-tracker

LeetCode Time-tracker

This extension lets you track the time you spend on solving a problem on Leetcode and will warn you if you take more than 30…

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 2,
  "name": "LeetCode Time-tracker",
  "version": "0.1",
  "content_scripts": [
    {
      "matches": [
        "https://leetcode.com/problems/*"
      ],
      "js": [
        "content.js"
      ]
    }
  ]
}