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.) 扩展基本信息
| 名称 | |
| 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*"
]
}
]
} | |