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 مع الأصدقاء لتثبيت الامتدادات بسهولة.
تعليمات استخدام التمديد
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\/*" ] } ] } |