CF-Predictor

CF-Predictor

This extension predicts rating changes for Codeforces. It shows approximate deltas during and after the contest.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "CF-Predictor",
  "short_name": "CF-Predictor",
  "version": "1.3.2",
  "description": "This extension predicts rating changes for Codeforces. It shows approximate deltas during and after the contest.",
  "manifest_version": 3,
  "icons": {
    "48": "static/icon48.png",
    "64": "static/icon64.png",
    "128": "static/icon128.png"
  },
  "action": {
    "default_icon": {
      "48": "static/icon48.png",
      "64": "static/icon64.png",
      "128": "static/icon128.png"
    },
    "default_title": "CF-Predictor",
    "default_popup": "popup.html"
  },
  "host_permissions": [
    "https://cf-predictor.wasylf.xyz/"
  ],
  "background": {
    "service_worker": "background.js"
  },
  "content_scripts": [
    {
      "js": [
        "third_party/jquery.js",
        "showDeltas.js"
      ],
      "matches": [
        "http://codeforces.com/contest/*/standings*",
        "https://codeforces.com/contest/*/standings*"
      ]
    }
  ]
}