Carrot

Carrot

Fast and accurate rating predictor for Codeforces

Merlin
Additional files are visible only to premium users

manifest.json


{
  "manifest_version": 2,
  "name": "Carrot",
  "version": "0.6.6",
  "description": "Rating predictor for Codeforces",
  "icons": {
    "48": "icons/icon.svg",
    "96": "icons/icon.svg",
    "128": "icons/icon.svg"
  },
  "permissions": [
    "storage",
    "unlimitedStorage"
  ],
  "background": {
    "page": "src/background/background.html",
    "persistent": true
  },
  "content_scripts": [
    {
      "matches": [
        "*://*.codeforces.com/*"
      ],
      "js": [
        "src/content/content.js"
      ],
      "css": [
        "src/content/content.css"
      ]
    }
  ],
  "options_ui": {
    "page": "src/options/options.html",
    "browser_style": true
  },
  "browser_action": {
    "browser_style": true,
    "default_icon": "icons/icon.svg",
    "default_title": "Carrot",
    "default_popup": "src/popup/popup.html"
  },
  "browser_specific_settings": {
    "gecko": {
      "id": "{f0eeb71a-e5d6-48e6-a818-568a6bef1bc0}"
    }
  }
}