Codeforces Solutions

Codeforces Solutions

How it works? 1. Install this extension. 2. Then browse any codeforces problem and click on the extension. You get all the…

Merlin
Additional files are visible only to premium users

manifest.json


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