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.」です。

拡張機能のスクリーンショット

screenshot

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                    

拡張機能の基本情報

名前 MyAnimeListVA MyAnimeListVA
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
Eメール [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'"
}