Itch Dashboard Filter

Adds a search + filters to the Itch.io dashboard page.

Itch Dashboard Filterคืออะไร?

Itch Dashboard Filter เป็นส่วนขยายของ Chrome ที่พัฒนาโดย Michael Savage-Benoist และคุณลักษณะหลักของมันคือ "Adds a search + filters to the Itch.io dashboard page."

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

screenshot
screenshot
screenshot
screenshot

ดาวน์โหลดไฟล์ CRX ของส่วนขยาย Itch Dashboard Filter

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

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

                        This extension will add a search field and filter buttons to the top of the Itch.io dashboard page. The filters include:
- Published pages
- Restricted pages
- Draft pages
- Mine (pages authored by you)
- Collab (pages where you are a co-author)

You can also sort by alphabetical (default) or 'date created' ascending/descending.

(Dev note: 'date created' actually sorts by the ID of the game, to stay data-light. This should correspond to when it was made chronologically.)                    

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

ชื่อ Itch Dashboard Filter Itch Dashboard Filter
ID pkdhmmjchdaljncegcnldbaacicpjfen
URL อย่างเป็นทางการ https://chromewebstore.google.com/detail/itch-dashboard-filter/pkdhmmjchdaljncegcnldbaacicpjfen
คำอธิบาย Adds a search + filters to the Itch.io dashboard page.
ขนาดไฟล์ 52.11 KB
จำนวนการติดตั้ง 130
เวอร์ชันปัจจุบัน 0.0.2
อัปเดตครั้งล่าสุด 2022-01-31
วันที่เผยแพร่ 2022-01-24
คะแนน 5.00/5 รวมทั้งหมด 2 คะแนน
ผู้พัฒนา Michael Savage-Benoist
อีเมล [email protected]
ประเภทการชำระเงิน free
ภาษาที่รองรับ en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Itch Dashboard Filter",
    "description": "Adds a search + filters to the Itch.io dashboard page.",
    "version": "0.0.2",
    "manifest_version": 3,
    "permissions": [
        "storage"
    ],
    "icons": {
        "16": "icon16.png",
        "48": "icon48.png",
        "128": "icon128.png"
    },
    "content_scripts": [
        {
            "css": [
                "styles.css"
            ],
            "js": [
                "jquery-3.6.0.min.js",
                "content.js"
            ],
            "matches": [
                "https:\/\/itch.io\/dashboard*"
            ]
        }
    ]
}