CodeSyncer

CodeSyncer

This Chrome extension enables users to synchronize their LeetCode and GFG submissions to their GitHub repository effortlessly.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 3,
  "name": "CodeSyncer",
  "description": "This Chrome extension enables users to synchronize their LeetCode and GFG submissions to their GitHub repository effortlessly.",
  "version": "1.1.2",
  "author": "Mustafiz Kaifee",
  "homepage_url": "https://github.com/Mustafiz04",
  "action": {
    "default_popup": "popup.html",
    "default_icon": {
      "16": "/static/images/logo1.PNG",
      "48": "/static/images/logo1.PNG",
      "128": "/static/images/logo1.PNG"
    }
  },
  "icons": {
    "16": "/static/images/logo1.PNG",
    "48": "/static/images/logo1.PNG",
    "128": "/static/images/logo1.PNG"
  },
  "background": {
    "service_worker": "/scripts/background.js"
  },
  "permissions": [
    "unlimitedStorage",
    "storage"
  ],
  "host_permissions": [
    "https://github.com/*",
    "https://api.github.com/*",
    "https://leetcode.com/*",
    "https://practice.geeksforgeeks.org/*"
  ],
  "content_scripts": [
    {
      "js": [
        "scripts/leetcode.js"
      ],
      "matches": [
        "https://leetcode.com/*"
      ],
      "run_at": "document_idle"
    },
    {
      "js": [
        "scripts/github.js"
      ],
      "matches": [
        "https://github.com/*"
      ],
      "run_at": "document_idle"
    },
    {
      "js": [
        "scripts/geeksforgeeks.js"
      ],
      "matches": [
        "https://practice.geeksforgeeks.org/*"
      ],
      "run_at": "document_idle"
    }
  ]
}