LeetBuddy

LeetBuddy

This is an extension to help in leetcoding

Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "LeetBuddy",
  "version": "0.0.3",
  "description": "This is an extension to help in leetcoding",
  "manifest_version": 3,
  "author": "Shubhojit Chattopadhyay",
  "icons": {
    "16": "icons/icon16.png",
    "32": "icons/icon32.png",
    "48": "icons/icon48.png",
    "128": "icons/icon128.png"
  },
  "permissions": [
    "activeTab",
    "scripting",
    "storage"
  ],
  "background": {
    "service_worker": "background.js"
  },
  "action": {
    "default_popup": "index.html",
    "default_title": "LeetBuddy"
  }
}