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文件
下载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'"
} | |