CF Status Checker

CF Status Checker

A chrome extension that provides you with the status/verdict of Multiple IDs together on your Id.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 2,
  "name": "CF Status Checker",
  "version": "0.1.1",
  "icons": {
    "16": "icon16.png",
    "48": "icon48.png",
    "128": "icon128.png"
  },
  "browser_action": {
    "default_icon": "icon16.png",
    "default_popup": "popup.html"
  },
  "content_scripts": [
    {
      "js": [
        "check.js"
      ],
      "matches": [
        "https://*.codeforces.com/*"
      ]
    }
  ],
  "permissions": [
    "tabs",
    "storage"
  ]
}