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*" ] } ] } |