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 อย่างง่ายดาย

คำแนะนำในการใช้ส่วนขยาย

                        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"
    ]
}