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."입니다.
확장 프로그램 스크린샷
Mal Adjusted Score 확장 프로그램 CRX 파일 다운로드
크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 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\/*" ] } ] } |