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
Eメール [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\/*"
            ]
        }
    ]
}