LeetHub v2

LeetHub v2

Automatically integrate your Leetcode & GeeksforGeeks submissions to GitHub

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 3,
  "name": "LeetHub v2",
  "description": "Automatically integrate your Leetcode & GeeksforGeeks submissions to GitHub",
  "homepage_url": "https://github.com/arunbhardwaj/LeetHub-2.0",
  "version": "2.0.1",
  "author": "Arun Bhardwaj",
  "action": {
    "default_icon": "assets/thumbnail.png",
    "default_popup": "popup.html"
  },
  "icons": {
    "16": "assets/thumbnail.png",
    "48": "assets/thumbnail.png",
    "128": "assets/thumbnail.png"
  },
  "background": {
    "service_worker": "scripts/background.js"
  },
  "permissions": [
    "unlimitedStorage",
    "storage"
  ],
  "content_scripts": [
    {
      "matches": [
        "https://leetcode.com/*",
        "https://github.com/*",
        "https://practice.geeksforgeeks.org/*"
      ],
      "js": [
        "scripts/leetcode.js",
        "scripts/authorize.js",
        "scripts/gfg.js"
      ],
      "run_at": "document_idle"
    }
  ],
  "content_security_policy": {
    "extension_pages": "script-src 'self'; object-src 'self'"
  }
}