MyAnimeListVA

When viewing a voice actor/actress's page on MAL, roles for anime you have seen will be highlighted.

Qu'est-ce que MyAnimeListVA ?

MyAnimeListVA est une extension Chrome développée par spicybadger, et sa fonction principale est "When viewing a voice actor/actress's page on MAL, roles for anime you have seen will be highlighted.".

Captures d'Écran de l'Extension

screenshot

Télécharger le fichier CRX de l'extension MyAnimeListVA

Téléchargez les fichiers d'extension MyAnimeListVA au format crx, installez manuellement les extensions Chrome dans le navigateur ou partagez les fichiers crx avec des amis pour installer facilement les extensions Chrome.

Instructions d'Utilisation de l'Extension

                        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                    

Informations de Base sur l'Extension

Nom MyAnimeListVA MyAnimeListVA
ID phjmbclhnhkcglkjidhpmmgllhhgdnho
URL Officiel https://chrome.google.com/webstore/detail/myanimelistva/phjmbclhnhkcglkjidhpmmgllhhgdnho
Description When viewing a voice actor/actress's page on MAL, roles for anime you have seen will be highlighted.
Taille du Fichier 52.57 KB
Nombre d'Installations 165
Version Actuelle 2.0.4
Dernière Mise à Jour 2020-08-23
Date de Publication 2019-09-18
Évaluation 4.29/5 Total 7 Évaluations
Développeur spicybadger
Email [email protected]
Type de Paiement free
Langues Prises en Charge 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'"
}