Mal Adjusted Score
This simple extension just give an adjusted score for all anime that makes it fall in line with a normal distribution.
Was ist Mal Adjusted Score?
Mal Adjusted Score ist eine Chrome-Erweiterung, die von Jonesy.moe entwickelt wurde, und ihr Hauptmerkmal ist "This simple extension just give an adjusted score for all anime that makes it fall in line with a normal distribution.".
Erweiterungsscreenshots
Mal Adjusted Score-Erweiterungs-CRX-Datei herunterladen
Laden Sie Mal Adjusted Score-Erweiterungsdateien im crx-Format herunter, installieren Sie Chrome-Erweiterungen manuell im Browser oder teilen Sie die crx-Dateien mit Freunden, um Chrome-Erweiterungen einfach zu installieren.
Anleitung zur Verwendung der Erweiterung
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.
Grundlegende Informationen zur Erweiterung
Name | Mal Adjusted Score |
ID | mkiianogeincmjfmdhpjghoelghlbflg |
Offizielle URL | https://chromewebstore.google.com/detail/mal-adjusted-score/mkiianogeincmjfmdhpjghoelghlbflg |
Beschreibung | This simple extension just give an adjusted score for all anime that makes it fall in line with a normal distribution. |
Dateigröße | 374 KB |
Installationsanzahl | 18 |
Aktuelle Version | 1.0.1 |
Letztes Update | 2021-04-03 |
Veröffentlichungsdatum | 2021-04-03 |
Entwickler | Jonesy.moe |
[email protected] | |
Zahlungsart | free |
Erweiterungswebsite | https://github.com/jonese1234/MalAdjustedScore-Extension |
Unterstützte Sprachen | 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\/*" ] } ] } |