Mal Adjusted Score
This simple extension just give an adjusted score for all anime that makes it fall in line with a normal distribution.
Τι είναι το Mal Adjusted Score;
Το Mal Adjusted Score είναι ένα πρόσθετο Chrome που αναπτύχθηκε από τον Jonesy.moe, και η κύρια λειτουργία του είναι "This simple extension just give an adjusted score for all anime that makes it fall in line with a normal distribution.".
Στιγμιότυπα Επέκτασης
Λήψη αρχείου CRX της επέκτασης Mal Adjusted Score
Λήψη αρχείων επέκτασης Mal Adjusted Score σε μορφή crx, εγκατάσταση των επεκτάσεων Chrome μη αυτόματα στον περιηγητή ή κοινοποίηση των αρχείων crx με φίλους για εύκολη εγκατάσταση των επεκτάσεων Chrome.
Οδηγίες Χρήσης της Επέκτασης
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.
Βασικές Πληροφορίες Επέκτασης
Όνομα | Mal Adjusted Score |
ID | mkiianogeincmjfmdhpjghoelghlbflg |
Επίσημο URL | https://chromewebstore.google.com/detail/mal-adjusted-score/mkiianogeincmjfmdhpjghoelghlbflg |
Περιγραφή | This simple extension just give an adjusted score for all anime that makes it fall in line with a normal distribution. |
Μέγεθος Αρχείου | 374 KB |
Αριθμός Εγκαταστάσεων | 18 |
Τρέχουσα Έκδοση | 1.0.1 |
Τελευταία Ενημέρωση | 2021-04-03 |
Ημερομηνία Δημοσίευσης | 2021-04-03 |
Προγραμματιστής | Jonesy.moe |
Ηλεκτρονικό ταχυδρομείο | [email protected] |
Τύπος Πληρωμής | free |
Ιστότοπος Επέκτασης | https://github.com/jonese1234/MalAdjustedScore-Extension |
Υποστηριζόμενες Γλώσσες | 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\/*" ] } ] } |