Codeforces Solutions

Codeforces Solutions

A chrome extension to get all submitted solutions of a particular problem. How it works? Download this extension. Then browse any…

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 3,
  "name": "Codeforces Solutions",
  "version": "0.3",
  "content_scripts": [
    {
      "matches": [
        "https://codeforces.com/*",
        "http://codeforces.com/*"
      ],
      "js": [
        "jquery-3.5.0.min.js",
        "content.js"
      ]
    }
  ],
  "action": {
    "default_icon": "icon.png"
  },
  "background": {
    "service_worker": "background.js"
  }
}