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."
ภาพหน้าจอของส่วนขยาย
ดาวน์โหลดไฟล์ 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 |
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\/*" ] } ] } |