rank-shout

Rank-shout is a browser extension that observes changes in ranklist for online judges like codechef and codeforces and gives notification for the same. This way, users dont have to check the ranklist from time to time.
Premium users can view and search full source code, and see the source code differences between two versions.
Upgrade to premium
manifest.json
{
  "manifest_version": 2,
  "name": "Rank-shout",
  "description": "",
  "version": "1.0.3",
  "browser_action": {
    "default_icon": "icon.png",
    "default_popup": "popup/popup.html"
  },
  "icons": {
    "128": "icon.png"
  },
  "background": {
    "persitent": false,
    "scripts": [
      "background/background.js"
    ]
  },
  "content_scripts": [
    {
      "matches": [
        "https://www.codechef.com/rankings/*"
      ],
      "js": [
        "content/codechef.js"
      ]
    },
    {
      "matches": [
        "*://codeforces.com/*/*/standings*"
      ],
      "js": [
        "content/codeforces.js"
      ]
    }
  ],
  "permissions": [
    "tabs",
    "*://*.codechef.com/*",
    "*://*.codeforces.com/*",
    "notifications"
  ]
}