Itch Dashboard Filter
Adds a search + filters to the Itch.io dashboard page.
Τι είναι το Itch Dashboard Filter;
Το Itch Dashboard Filter είναι ένα πρόσθετο Chrome που αναπτύχθηκε από τον Michael Savage-Benoist, και η κύρια λειτουργία του είναι "Adds a search + filters to the Itch.io dashboard page.".
Στιγμιότυπα Επέκτασης
Λήψη αρχείου CRX της επέκτασης Itch Dashboard Filter
Λήψη αρχείων επέκτασης 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 |
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 |
Ηλεκτρονικό ταχυδρομείο | [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*" ] } ] } |