FaceitBanger
Custom notification audio
什么是FaceitBanger?
FaceitBanger是由krystofpiorecky开发的Chrome扩展程序,该扩展的主要功能是“Custom notification audio”。
扩展截图
下载FaceitBanger扩展crx文件
下载FaceitBanger扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。
扩展使用说明
Allows the user to change their custom song when getting their matchmaking match accept on platform called faceit.com used by thousands of e-sport players and professionals. 扩展基本信息
| 名称 | |
| ID | jfpaonbcoepipiecpedacfcldodeljdf |
| 官方URL | https://chromewebstore.google.com/detail/faceitbanger/jfpaonbcoepipiecpedacfcldodeljdf |
| 简介 | Custom notification audio |
| 文件大小 | 36.03 KB |
| 安装次数 | 76 |
| 当前版本 | 2.2.0 |
| 更新时间 | 2023-02-15 |
| 上架时间 | 2022-11-29 |
| 评分 | 5.00/5 共3次评分 |
| 开发者 | krystofpiorecky |
| 电子邮箱 | [email protected] |
| 付费类型 | free |
| 扩展官网 | https://piorecky.cz/faceitbanger |
| 支持的语言 | en-US |
| manifest.json | |
{
"update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
"name": "FaceitBanger",
"description": "Custom notification audio",
"version": "2.2.0",
"manifest_version": 3,
"permissions": [
"tabs",
"declarativeNetRequest",
"storage",
"*:\/\/*.faceit.com\/*"
],
"host_permissions": [
"*:\/\/*\/*"
],
"content_scripts": [
{
"matches": [
"*:\/\/*.faceit.com\/*"
],
"js": [
"main.js"
],
"css": [
"main.css"
]
}
],
"web_accessible_resources": [
{
"matches": [
"*:\/\/*.faceit.com\/*"
],
"resources": [
"img\/icon-play.svg",
"img\/icon-pause.svg",
"img\/icon-select.svg",
"img\/icon-active.svg"
]
}
],
"background": {
"service_worker": "background.js"
},
"action": {
"default_icon": {
"16": "icons\/icon16.png",
"24": "icons\/icon24.png",
"32": "icons\/icon32.png",
"48": "icons\/icon48.png",
"128": "icons\/icon128.png"
}
},
"icons": {
"16": "icons\/icon16.png",
"24": "icons\/icon24.png",
"32": "icons\/icon32.png",
"48": "icons\/icon48.png",
"128": "icons\/icon128.png"
}
} | |