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.".

Снимки экрана расширения

screenshot
screenshot

Скачать файл 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 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\/*"
            ]
        }
    ]
}