Mal Adjusted Score
This simple extension just give an adjusted score for all anime that makes it fall in line with a normal distribution.
O que é Mal Adjusted Score?
Mal Adjusted Score é uma extensão do Chrome desenvolvida por Jonesy.moe, e sua principal característica é "This simple extension just give an adjusted score for all anime that makes it fall in line with a normal distribution.".
Capturas de Tela da Extensão
Baixar o arquivo CRX da Extensão Mal Adjusted Score
Baixe arquivos de extensão Mal Adjusted Score no formato crx, instale manualmente as extensões do Chrome no navegador ou compartilhe os arquivos crx com amigos para instalar facilmente as extensões do Chrome.
Instruções de Uso da Extensão
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.
Informações Básicas da Extensão
Nome | Mal Adjusted Score |
ID | mkiianogeincmjfmdhpjghoelghlbflg |
URL Oficial | https://chromewebstore.google.com/detail/mal-adjusted-score/mkiianogeincmjfmdhpjghoelghlbflg |
Descrição | This simple extension just give an adjusted score for all anime that makes it fall in line with a normal distribution. |
Tamanho do Arquivo | 374 KB |
Contagem de Instalações | 18 |
Versão Atual | 1.0.1 |
Última Atualização | 2021-04-03 |
Data de Publicação | 2021-04-03 |
Desenvolvedor | Jonesy.moe |
[email protected] | |
Tipo de Pagamento | free |
Site da Extensão | https://github.com/jonese1234/MalAdjustedScore-Extension |
Idiomas Suportados | 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\/*" ] } ] } |