Itch Dashboard Filter

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

Itch Dashboard Filterとは何ですか?

Itch Dashboard FilterはMichael Savage-Benoistによって開発されたChromeの拡張機能で、その主な機能は「Adds a search + filters to the Itch.io dashboard page.」です。

拡張機能のスクリーンショット

screenshot
screenshot
screenshot
screenshot

Itch Dashboard Filter拡張機能のCRXファイルをダウンロード

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
Eメール [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*"
            ]
        }
    ]
}