Itch Dashboard Filter
Adds a search + filters to the Itch.io dashboard page.
Was ist Itch Dashboard Filter?
Itch Dashboard Filter ist eine Chrome-Erweiterung, die von Michael Savage-Benoist entwickelt wurde, und ihr Hauptmerkmal ist "Adds a search + filters to the Itch.io dashboard page.".
Erweiterungsscreenshots
Itch Dashboard Filter-Erweiterungs-CRX-Datei herunterladen
Laden Sie Itch Dashboard Filter-Erweiterungsdateien im crx-Format herunter, installieren Sie Chrome-Erweiterungen manuell im Browser oder teilen Sie die crx-Dateien mit Freunden, um Chrome-Erweiterungen einfach zu installieren.
Anleitung zur Verwendung der Erweiterung
                        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.)                     Grundlegende Informationen zur Erweiterung
| Name |   |  
| ID | pkdhmmjchdaljncegcnldbaacicpjfen | 
| Offizielle URL | https://chromewebstore.google.com/detail/itch-dashboard-filter/pkdhmmjchdaljncegcnldbaacicpjfen | 
| Beschreibung | Adds a search + filters to the Itch.io dashboard page. | 
| Dateigröße | 52.11 KB | 
| Installationsanzahl | 130 | 
| Aktuelle Version | 0.0.2 | 
| Letztes Update | 2022-01-31 | 
| Veröffentlichungsdatum | 2022-01-24 | 
| Bewertung | 5.00/5 Insgesamt 2 Bewertungen | 
| Entwickler | Michael Savage-Benoist | 
| [email protected] | |
| Zahlungsart | free | 
| Unterstützte Sprachen | 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*"
            ]
        }
    ]
}  |  |