Mal Adjusted Score

Mal Adjusted Score

This simple extension just give an adjusted score for all anime that makes it fall in line with a normal distribution.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "Mal Adjusted Score",
  "description": "This simple extension just give an adjusted score for all anime that makes it fall in line with a normal distribution.",
  "version": "1.0.1",
  "manifest_version": 3,
  "background": {
    "service_worker": "background.js"
  },
  "permissions": [
    "storage",
    "alarms"
  ],
  "host_permissions": [
    "https://myanimelist.net/"
  ],
  "icons": {
    "128": "imgs/icon128.png"
  },
  "content_scripts": [
    {
      "css": [
        "mal-top/mal-top.css"
      ],
      "js": [
        "mal-top/mal-top.js"
      ],
      "matches": [
        "https://myanimelist.net/topanime.php*"
      ]
    },
    {
      "css": [
        "mal-anime/mal-anime.css"
      ],
      "js": [
        "mal-anime/mal-anime.js"
      ],
      "matches": [
        "https://myanimelist.net/anime/*"
      ]
    }
  ]
}