LeetCode to GitHub

LeetCode to GitHub

Automatically upload your LeetCode solutions to GitHub.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "LeetCode to GitHub",
  "description": "Automatically upload your LeetCode solutions to GitHub.",
  "version": "2.0.7",
  "manifest_version": 3,
  "action": {
    "default_popup": "./popup/popup.html",
    "default_icon": "./icons/icon128.png"
  },
  "options_page": "./options/options.html",
  "icons": {
    "16": "./icons/icon16.png",
    "32": "./icons/icon32.png",
    "48": "./icons/icon48.png",
    "128": "./icons/icon128.png"
  },
  "permissions": [
    "background",
    "storage",
    "webRequest"
  ],
  "host_permissions": [
    "*://github.com/*",
    "*://www.linkedin.com/in/willstarling/",
    "*://paypal.me/willisaur",
    "*://leetcode.com/graphql/",
    "*://api.github.com/repos/*",
    "*://leetcode.com/problems/*/*",
    "*://leetcode.com/submissions/detail/*/check/"
  ],
  "background": {
    "service_worker": "service-worker.js"
  }
}