Steam Friends Enhancer
Improve steam friends experience
什么是Steam Friends Enhancer?
Steam Friends Enhancer是由ceifa开发的Chrome扩展程序,该扩展的主要功能是“Improve steam friends experience”。
扩展截图
下载Steam Friends Enhancer扩展crx文件
下载Steam Friends Enhancer扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。
扩展使用说明
This extension help you to manager your steam friends list. The current features available are:
- Send mass comments to your friends
- Select friends by offline time 扩展基本信息
| 名称 | |
| ID | homplpaldlodpgkcilfgcbfoaolbmplm |
| 官方URL | https://chromewebstore.google.com/detail/steam-friends-enhancer/homplpaldlodpgkcilfgcbfoaolbmplm |
| 简介 | Improve steam friends experience |
| 文件大小 | 18.83 KB |
| 安装次数 | 2,167 |
| 当前版本 | 0.0.5 |
| 更新时间 | 2022-03-16 |
| 上架时间 | 2020-07-12 |
| 评分 | 4.00/5 共19次评分 |
| 开发者 | ceifa |
| 电子邮箱 | [email protected] |
| 付费类型 | free |
| 扩展官网 | https://github.com/ceifa/steam-friends-enhancer |
| 帮助页面URL | https://github.com/ceifa/steam-friends-enhancer/issues |
| 隐私政策页面URL | https://www.freeprivacypolicy.com/live/654d7c06-96a8-48b8-b523-522a546877ba |
| 支持的语言 | en |
| manifest.json | |
{
"update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
"name": "Steam Friends Enhancer",
"version": "0.0.5",
"manifest_version": 2,
"description": "Improve steam friends experience",
"icons": {
"128": ".\/static\/icon-128px.png"
},
"content_scripts": [
{
"run_at": "document_end",
"matches": [
"*:\/\/steamcommunity.com\/*\/*\/friends*"
],
"js": [
".\/js\/content.js"
]
}
],
"background": {
"scripts": [
"\/js\/background.js"
],
"persistent": false
},
"web_accessible_resources": [
"\/js\/injected.js"
],
"permissions": [
"*:\/\/steamcommunity.com\/*\/*\/friends*"
]
} | |