MyAnimeListVA
When viewing a voice actor/actress's page on MAL, roles for anime you have seen will be highlighted.
MyAnimeListVAคืออะไร?
MyAnimeListVA เป็นส่วนขยายของ Chrome ที่พัฒนาโดย spicybadger และคุณลักษณะหลักของมันคือ "When viewing a voice actor/actress's page on MAL, roles for anime you have seen will be highlighted."
ภาพหน้าจอของส่วนขยาย
ดาวน์โหลดไฟล์ CRX ของส่วนขยาย MyAnimeListVA
ดาวน์โหลดไฟล์ส่วนขยาย MyAnimeListVA ในรูปแบบ crx และติดตั้งส่วนขยาย Chrome ด้วยตนเองในเบราว์เซอร์หรือแชร์ไฟล์ crx กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย Chrome อย่างง่ายดาย
คำแนะนำในการใช้ส่วนขยาย
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'" } |