Mal Adjusted Score
This simple extension just give an adjusted score for all anime that makes it fall in line with a normal distribution.
Wat is Mal Adjusted Score?
Mal Adjusted Score is een Chrome-extensie ontwikkeld door Jonesy.moe, en de belangrijkste functie is "This simple extension just give an adjusted score for all anime that makes it fall in line with a normal distribution.".
Extensie Screenshots
Download het CRX-bestand van de extensie Mal Adjusted Score
Download Mal Adjusted Score-extensiebestanden in crx-indeling, installeer Chrome-extensies handmatig in de browser of deel de crx-bestanden met vrienden om Chrome-extensies eenvoudig te installeren.
Instructies voor het Gebruik van de Extensie
A simple extension that enhances the over all experience of using the MyAnimeList website. The enhancement is by displaying a more accurate score for each anime. The score is based of an adjustment made to all anime to bring inline with a normal distribution about the center. > Displayed on the Top Anime page > Displayed on each individual anime page.
Basisinformatie over de Extensie
Naam | Mal Adjusted Score |
ID | mkiianogeincmjfmdhpjghoelghlbflg |
Officiële URL | https://chromewebstore.google.com/detail/mal-adjusted-score/mkiianogeincmjfmdhpjghoelghlbflg |
Beschrijving | This simple extension just give an adjusted score for all anime that makes it fall in line with a normal distribution. |
Bestandsgrootte | 374 KB |
Aantal Installaties | 18 |
Huidige Versie | 1.0.1 |
Laatst Bijgewerkt | 2021-04-03 |
Publicatiedatum | 2021-04-03 |
Ontwikkelaar | Jonesy.moe |
[email protected] | |
Betalingswijze | free |
Extensiewebsite | https://github.com/jonese1234/MalAdjustedScore-Extension |
Ondersteunde Talen | en |
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\/*" ] } ] } |