Clutterfree for Anilist

Minimal extension to remove clutter from AniList notifications

Clutterfree for Anilistคืออะไร?

Clutterfree for Anilist เป็นส่วนขยายของ Chrome ที่พัฒนาโดย Miles Rayne และคุณลักษณะหลักของมันคือ "Minimal extension to remove clutter from AniList notifications"

ภาพหน้าจอของส่วนขยาย

screenshot
screenshot

ดาวน์โหลดไฟล์ CRX ของส่วนขยาย Clutterfree for Anilist

ดาวน์โหลดไฟล์ส่วนขยาย Clutterfree for Anilist ในรูปแบบ crx และติดตั้งส่วนขยาย Chrome ด้วยตนเองในเบราว์เซอร์หรือแชร์ไฟล์ crx กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย Chrome อย่างง่ายดาย

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

                        Clutterfree for Anilist is a minimalistic browser extension for removing clutter from AniList notifications.
Its core feature is the option to group similar notifications (such as activity likes) of the /notifications page on AniList into single items that can be expanded to show individual details when needed.                    

ข้อมูลพื้นฐานของส่วนขยาย

ชื่อ Clutterfree for Anilist Clutterfree for Anilist
ID hfgmcmijjnccacoefjdndepfkbaejllb
URL อย่างเป็นทางการ https://chromewebstore.google.com/detail/clutterfree-for-anilist/hfgmcmijjnccacoefjdndepfkbaejllb
คำอธิบาย Minimal extension to remove clutter from AniList notifications
ขนาดไฟล์ 17.81 KB
จำนวนการติดตั้ง 33
เวอร์ชันปัจจุบัน 1.1.2
อัปเดตครั้งล่าสุด 2023-03-18
วันที่เผยแพร่ 2023-03-18
คะแนน 5.00/5 รวมทั้งหมด 1 คะแนน
ผู้พัฒนา Miles Rayne
อีเมล [email protected]
ประเภทการชำระเงิน free
ภาษาที่รองรับ en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 3,
    "name": "Clutterfree for Anilist",
    "description": "Minimal extension to remove clutter from AniList notifications",
    "version": "1.1.2",
    "author": "Miles Rayne",
    "icons": {
        "128": "icons\/icon128.png"
    },
    "permissions": [
        "storage"
    ],
    "content_scripts": [
        {
            "matches": [
                "https:\/\/anilist.co\/*"
            ],
            "js": [
                "polyfill.js",
                "clutterfree.js"
            ]
        }
    ],
    "web_accessible_resources": [
        {
            "matches": [
                "https:\/\/anilist.co\/*"
            ],
            "resources": [
                "css\/clutterfree.css"
            ]
        }
    ]
}