AniList Modifier

Add scores to AniList activity feed

AniList Modifier क्या है?

AniList Modifier Gregor Maclaine द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Add scores to AniList activity feed"।

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

screenshot

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

crx प्रारूप में AniList Modifier एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ crx फ़ाइलों को साझा करें ताकि क्रोम एक्सटेंशन को आसानी से स्थापित किया जा सके।

एक्सटेंशन उपयोग निर्देश

                        Chrome extension for Anilist that adds score information to activity feed, such as when someone completes or drops a show or manga. The extension allows all scoring formats such as number based, stars, or smiley faces.                    

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

नाम AniList Modifier AniList Modifier
ID knclmpfhlbdlndgplhbnpajhpjmklfpi
आधिकारिक URL https://chromewebstore.google.com/detail/anilist-modifier/knclmpfhlbdlndgplhbnpajhpjmklfpi
विवरण Add scores to AniList activity feed
फ़ाइल का आकार 67.9 KB
स्थापना संख्या 27
वर्तमान संस्करण 1.2.1
अंतिम अपडेट 2023-07-30
प्रकाशन तिथि 2023-07-08
रेटिंग 4.67/5 कुल 3 रेटिंग्स
डेवलपर Gregor Maclaine
ईमेल [email protected]
भुगतान के प्रकार free
एक्सटेंशन वेबसाइट https://github.com/gregormaclaine/AniListModifier
समर्थित भाषाएँ en-GB
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "AniList Modifier",
    "description": "Add scores to AniList activity feed",
    "version": "1.2.1",
    "manifest_version": 3,
    "content_scripts": [
        {
            "matches": [
                "https:\/\/anilist.co\/*"
            ],
            "js": [
                "injection.js"
            ],
            "css": []
        }
    ],
    "icons": {
        "48": "icons\/48.png",
        "128": "icons\/128.png",
        "256": "icons\/256.png",
        "512": "icons\/512.png"
    },
    "background": {
        "service_worker": "background.js"
    },
    "action": {
        "default_popup": "popup\/index.html",
        "default_icon": {
            "48": "icons\/48.png"
        }
    },
    "permissions": [
        "storage"
    ]
}