MyAnimeListVA

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

MyAnimeListVA क्या है?

MyAnimeListVA spicybadger द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "When viewing a voice actor/actress's page on MAL, roles for anime you have seen will be highlighted."।

एक्सटेंशन स्क्रीनशॉट्स

screenshot

एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें

crx प्रारूप में MyAnimeListVA एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ 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                    

एक्सटेंशन की मूल जानकारी

नाम 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
ईमेल [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'"
}