Mal Adjusted Score

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

Cos'è Mal Adjusted Score?

Mal Adjusted Score è un'estensione di Chrome sviluppata da Jonesy.moe, e la sua funzione principale è "This simple extension just give an adjusted score for all anime that makes it fall in line with a normal distribution.".

Screenshot dell'Estensione

screenshot
screenshot

Scarica il file CRX dell'estensione Mal Adjusted Score

Scarica i file di estensione Mal Adjusted Score in formato crx, installa manualmente le estensioni di Chrome nel browser o condividi i file crx con gli amici per installare facilmente le estensioni di Chrome.

Istruzioni per l'Uso dell'Estensione

                        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.                    

Informazioni di Base sull'Estensione

Nome Mal Adjusted Score Mal Adjusted Score
ID mkiianogeincmjfmdhpjghoelghlbflg
URL Ufficiale https://chromewebstore.google.com/detail/mal-adjusted-score/mkiianogeincmjfmdhpjghoelghlbflg
Descrizione This simple extension just give an adjusted score for all anime that makes it fall in line with a normal distribution.
Dimensione del File 374 KB
Conteggio Installazioni 18
Versione Corrente 1.0.1
Ultimo Aggiornamento 2021-04-03
Data di Pubblicazione 2021-04-03
Sviluppatore Jonesy.moe
Email [email protected]
Tipo di Pagamento free
Sito Web dell'Estensione https://github.com/jonese1234/MalAdjustedScore-Extension
Lingue Supportate 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\/*"
            ]
        }
    ]
}