Itch Dashboard Filter

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

Itch Dashboard Filter là gì?

Itch Dashboard Filter là một tiện ích mở rộng Chrome được phát triển bởi Michael Savage-Benoist, và tính năng chính của nó là "Adds a search + filters to the Itch.io dashboard page.".

Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng

screenshot
screenshot
screenshot
screenshot

Tải xuống tệp CRX của tiện ích mở rộng Itch Dashboard Filter

Tải xuống các tệp mở rộng Itch Dashboard Filter dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.

Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng

                        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.)                    

Thông Tin Cơ Bản về Tiện Ích Mở Rộng

Tên Itch Dashboard Filter Itch Dashboard Filter
ID pkdhmmjchdaljncegcnldbaacicpjfen
URL Chính Thức https://chromewebstore.google.com/detail/itch-dashboard-filter/pkdhmmjchdaljncegcnldbaacicpjfen
Mô tả Adds a search + filters to the Itch.io dashboard page.
Kích Thước Tệp 52.11 KB
Số Lần Cài Đặt 130
Phiên Bản Hiện Tại 0.0.2
Cập Nhật Lần Cuối 2022-01-31
Ngày Phát Hành 2022-01-24
Đánh Giá 5.00/5 Tổng số 2 Đánh Giá
Nhà Phát Triển Michael Savage-Benoist
Email [email protected]
Loại Thanh Toán free
Ngôn Ngữ Được Hỗ Trợ 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*"
            ]
        }
    ]
}