Itch Dashboard Filter
Adds a search + filters to the Itch.io dashboard page.
Qu'est-ce que Itch Dashboard Filter ?
Itch Dashboard Filter est une extension Chrome développée par Michael Savage-Benoist, et sa fonction principale est "Adds a search + filters to the Itch.io dashboard page.".
Captures d'Écran de l'Extension
Télécharger le fichier CRX de l'extension Itch Dashboard Filter
Téléchargez les fichiers d'extension Itch Dashboard Filter au format crx, installez manuellement les extensions Chrome dans le navigateur ou partagez les fichiers crx avec des amis pour installer facilement les extensions Chrome.
Instructions d'Utilisation de l'Extension
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.)
Informations de Base sur l'Extension
Nom | Itch Dashboard Filter |
ID | pkdhmmjchdaljncegcnldbaacicpjfen |
URL Officiel | https://chromewebstore.google.com/detail/itch-dashboard-filter/pkdhmmjchdaljncegcnldbaacicpjfen |
Description | Adds a search + filters to the Itch.io dashboard page. |
Taille du Fichier | 52.11 KB |
Nombre d'Installations | 130 |
Version Actuelle | 0.0.2 |
Dernière Mise à Jour | 2022-01-31 |
Date de Publication | 2022-01-24 |
Évaluation | 5.00/5 Total 2 Évaluations |
Développeur | Michael Savage-Benoist |
[email protected] | |
Type de Paiement | free |
Langues Prises en Charge | 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*" ] } ] } |