ShowProblemRating

ShowProblemRating

Shows the difficulty rating of problem, if present separately in the sidebar. For people who want to hide all tags but want to see the difficulty rating of a problem.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "manifest_version": 2,
  "name": "ShowProblemRating",
  "version": "3.1",
  "description": "Shows the rating of a codeforces problem separately in the sidebar",
  "icons": {
    "16": "icon16.png",
    "48": "icon48.png",
    "128": "icon128.jpg"
  },
  "browser_action": {
    "default_icon": "icon32.png",
    "default_title": "ShowProbRating"
  },
  "content_scripts": [
    {
      "matches": [
        "*://codeforces.com/*/problem*"
      ],
      "js": [
        "cfprobrating.js"
      ]
    }
  ]
}