MyAnimeListVA
When viewing a voice actor/actress's page on MAL, roles for anime you have seen will be highlighted.
MyAnimeListVA란 무엇입니까?
MyAnimeListVA은(는) spicybadger에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "When viewing a voice actor/actress's page on MAL, roles for anime you have seen will be highlighted."입니다.
확장 프로그램 스크린샷
MyAnimeListVA 확장 프로그램 CRX 파일 다운로드
크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.
확장 프로그램 사용 설명서
With this extension, you will be able to view what other roles a voice actor has played on MyAnimeList.net. Roles will be highlighted for better visibility. 1.0.2: Fixed Issue with users who have "Customized Anime Lists" using CSS. 1.0.3: MAL's website was updated, made according changes. 2.0.0: Now supports anime lists with > 300 entries, and bug fix regarding retrieving all of the user's shows 2.0.1: Changes to MAL website 2.0.2: Changes to MAL website 2.0.3: Changes to MAL website 2.0.4: Bug Fix
확장 프로그램 기본 정보
이름 | |
ID | phjmbclhnhkcglkjidhpmmgllhhgdnho |
공식 URL | https://chrome.google.com/webstore/detail/myanimelistva/phjmbclhnhkcglkjidhpmmgllhhgdnho |
설명 | When viewing a voice actor/actress's page on MAL, roles for anime you have seen will be highlighted. |
파일 크기 | 52.57 KB |
설치 횟수 | 165 |
현재 버전 | 2.0.4 |
최근 업데이트 | 2020-08-23 |
출시 날짜 | 2019-09-18 |
평점 | 4.29/5 총 7 개의 평점 |
개발자 | spicybadger |
이메일 | [email protected] |
결제 유형 | free |
지원되는 언어 | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "MyAnimeListVA", "version": "2.0.4", "description": "When viewing a voice actor\/actress's page on MAL, roles for anime you have seen will be highlighted.", "icons": { "16": "icons\/icon16.png", "48": "icons\/icon48.png", "128": "icons\/icon128.png" }, "page_action": { "default_title": "MyAnimeListVA", "default_icon": "icons\/icon.png" }, "permissions": [ "tabs", "http:\/\/myanimelist.net\/people\/*", "https:\/\/myanimelist.net\/people\/*", "*:\/\/*.myanimelist.net\/people\/*" ], "background": { "scripts": [ "jquery-3.1.0.min.js" ], "persistent": false }, "content_scripts": [ { "matches": [ "*:\/\/*.myanimelist.net\/people\/*" ], "js": [ "jquery-3.1.0.min.js", "content.js" ], "run_at": "document_end", "all_frames": true } ], "content_security_policy": "script-src 'self' 'unsafe-eval'; object-src 'self'" } |