AniList Modifier

Add scores to AniList activity feed

ما هو AniList Modifier؟

AniList Modifier هو إضافة Chrome تم تطويرها بواسطة Gregor Maclaine، والميزة الرئيسية لها هي "Add scores to AniList activity feed".

لقطات شاشة التمديد

screenshot

تحميل ملف CRX للإضافة AniList Modifier

قم بتنزيل ملفات الامتداد AniList Modifier بتنسيق crx ، وقم بتثبيت الامتدادات يدويًا في متصفح Chrome ، أو شارك ملفات 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"
    ]
}