Itch Dashboard Filter

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

¿Qué es Itch Dashboard Filter?

Itch Dashboard Filter es una extensión de Chrome desarrollada por Michael Savage-Benoist, y su función principal es "Adds a search + filters to the Itch.io dashboard page.".

Capturas de Pantalla de la Extensión

screenshot
screenshot
screenshot
screenshot

Descargar Archivo CRX de la Extensión Itch Dashboard Filter

Descarga archivos de extensión Itch Dashboard Filter en formato crx, instala manualmente las extensiones de Chrome en el navegador o comparte los archivos crx con amigos para instalar fácilmente las extensiones de Chrome.

Instrucciones de Uso de la Extensión

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

Información Básica de la Extensión

Nombre Itch Dashboard Filter Itch Dashboard Filter
ID pkdhmmjchdaljncegcnldbaacicpjfen
URL Oficial https://chromewebstore.google.com/detail/itch-dashboard-filter/pkdhmmjchdaljncegcnldbaacicpjfen
Descripción Adds a search + filters to the Itch.io dashboard page.
Tamaño del Archivo 52.11 KB
Cantidad de Instalaciones 130
Versión Actual 0.0.2
Última Actualización 2022-01-31
Fecha de Publicación 2022-01-24
Calificación 5.00/5 Total de 2 Calificaciones
Desarrollador Michael Savage-Benoist
Correo electrónico [email protected]
Tipo de Pago free
Idiomas Soportados 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*"
            ]
        }
    ]
}