Itch Dashboard Filter
Adds a search + filters to the Itch.io dashboard page.
什麼是Itch Dashboard Filter?
Itch Dashboard Filter是由Michael Savage-Benoist開發的Chrome擴展程式,該擴展的主要功能是“Adds a search + filters to the Itch.io dashboard page.”。
擴展截圖
下載Itch Dashboard Filter擴展crx文件
下載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 |
官方網址 | 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*" ] } ] } |