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是由Jonesy.moe开发的Chrome扩展程序,该扩展的主要功能是“This simple extension just give an adjusted score for all anime that makes it fall in line with a normal distribution.”。

扩展截图

screenshot
screenshot

下载Mal Adjusted Score扩展crx文件

下载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\/*"
            ]
        }
    ]
}