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 là gì?

Mal Adjusted Score là một tiện ích mở rộng Chrome được phát triển bởi Jonesy.moe, và tính năng chính của nó là "This simple extension just give an adjusted score for all anime that makes it fall in line with a normal distribution.".

Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng

screenshot
screenshot

Tải xuống tệp CRX của tiện ích mở rộng Mal Adjusted Score

Tải xuống các tệp mở rộng Mal Adjusted Score dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.

Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng

                        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.                    

Thông Tin Cơ Bản về Tiện Ích Mở Rộng

Tên Mal Adjusted Score Mal Adjusted Score
ID mkiianogeincmjfmdhpjghoelghlbflg
URL Chính Thức https://chromewebstore.google.com/detail/mal-adjusted-score/mkiianogeincmjfmdhpjghoelghlbflg
Mô tả This simple extension just give an adjusted score for all anime that makes it fall in line with a normal distribution.
Kích Thước Tệp 374 KB
Số Lần Cài Đặt 18
Phiên Bản Hiện Tại 1.0.1
Cập Nhật Lần Cuối 2021-04-03
Ngày Phát Hành 2021-04-03
Nhà Phát Triển Jonesy.moe
Email [email protected]
Loại Thanh Toán free
Trang Web Mở Rộng https://github.com/jonese1234/MalAdjustedScore-Extension
Ngôn Ngữ Được Hỗ Trợ 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\/*"
            ]
        }
    ]
}