Leet Repeet

Leet Repeet

Spaced repetition of leetcode problems for better problem retention which helps to be prepared at the next coding interview

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "Leet Repeet",
  "version": "1.0.4",
  "description": "Spaced repetition of leetcode problems for better problem retention which helps to be prepared at the next coding interview",
  "permissions": [
    "https://leetcode.com/",
    "activeTab"
  ],
  "background": {
    "scripts": [
      "background.js"
    ],
    "persistent": false
  },
  "icons": {
    "16": "images/16x16dark.png",
    "32": "images/32x32dark.png",
    "48": "images/48x48dark.png",
    "128": "images/128x128dark.png"
  },
  "browser_action": {
    "default_popup": "popup.html",
    "default_icon": {
      "16": "images/16x16dark.png",
      "32": "images/32x32dark.png",
      "48": "images/48x48dark.png",
      "128": "images/128x128dark.png"
    }
  },
  "content_security_policy": "script-src 'self' https://ssl.google-analytics.com https://cdn.jsdelivr.net/alasql/0.2/alasql.min.js 'unsafe-eval'; object-src 'self'",
  "manifest_version": 2
}