Sorare custom colors

Sorare custom colors

Customise and harmonise rating colours on the sorare.com and soraredata.com websites.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 3,
  "name": "Sorare custom colors",
  "version": "1.0.3",
  "description": "Customise and harmonise rating colours on the sorare.com and soraredata.com websites.",
  "permissions": [
    "storage"
  ],
  "icons": {
    "16": "sorare_color_bis_16.png",
    "32": "sorare_color_bis_32.png",
    "48": "sorare_color_bis_48.png",
    "128": "sorare_color_bis_128.png"
  },
  "background": {
    "service_worker": "background.js"
  },
  "content_scripts": [
    {
      "matches": [
        "*://*.soraredata.com/*"
      ],
      "js": [
        "contentsoraredata.js"
      ],
      "type": "module"
    },
    {
      "matches": [
        "*://*.sorare.com/football*"
      ],
      "js": [
        "contentsorare.js"
      ],
      "type": "module"
    }
  ],
  "action": {
    "default_popup": "popup.html",
    "default_icon": {
      "16": "sorare_color_bis_16.png",
      "32": "sorare_color_bis_32.png",
      "48": "sorare_color_bis_48.png",
      "128": "sorare_color_bis_128.png"
    }
  }
}