Itch Dashboard Filter

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

Co je Itch Dashboard Filter?

Itch Dashboard Filter je rozšíření Chrome vyvinuté Michael Savage-Benoist, a jeho hlavní funkcí je „Adds a search + filters to the Itch.io dashboard page.“.

Snímky obrazovky rozšíření

screenshot
screenshot
screenshot
screenshot

Stáhnout soubor CRX rozšíření Itch Dashboard Filter

Stáhněte si soubory rozšíření Itch Dashboard Filter ve formátu crx, ručně nainstalujte rozšíření Chrome do prohlížeče nebo sdílejte soubory crx s přáteli, abyste jednoduše nainstalovali rozšíření Chrome.

Pokyny pro Použití Rozšíření

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

Základní Informace o Rozšíření

Název Itch Dashboard Filter Itch Dashboard Filter
ID pkdhmmjchdaljncegcnldbaacicpjfen
Oficiální URL https://chromewebstore.google.com/detail/itch-dashboard-filter/pkdhmmjchdaljncegcnldbaacicpjfen
Popis Adds a search + filters to the Itch.io dashboard page.
Velikost souboru 52.11 KB
Počet instalací 130
Aktuální Verze 0.0.2
Poslední Aktualizace 2022-01-31
Datum Vydání 2022-01-24
Hodnocení 5.00/5 Celkem 2 Hodnocení
Vývojář Michael Savage-Benoist
E-mail [email protected]
Typ Platby free
Podporované Jazyky 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*"
            ]
        }
    ]
}