CSES Helper

CSES Helper

Sort problems based on solved count

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 3,
  "name": "CSES Helper",
  "version": "1.0.0",
  "description": "Sort problems based on solved count",
  "host_permissions": [
    "https://cses.fi/*"
  ],
  "content_scripts": [
    {
      "matches": [
        "https://cses.fi/*"
      ],
      "js": [
        "content.js"
      ]
    }
  ],
  "background": {
    "service_worker": "background.js"
  }
}