Twitch MuteAds
Mute Ads on Twitch
什么是Twitch MuteAds?
Twitch MuteAds是由spddl开发的Chrome扩展程序,该扩展的主要功能是“Mute Ads on Twitch”。
扩展截图
下载Twitch MuteAds扩展crx文件
下载Twitch MuteAds扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。
扩展使用说明
Mutes advertisements on Twitch and reactivates them after the advertisement. 扩展基本信息
| 名称 | |
| ID | jpcjejphfbpbnjahcnfgcjjodoopgdgb |
| 官方URL | https://chromewebstore.google.com/detail/twitch-muteads/jpcjejphfbpbnjahcnfgcjjodoopgdgb |
| 简介 | Mute Ads on Twitch |
| 文件大小 | 10.13 KB |
| 安装次数 | 44 |
| 当前版本 | 0.0.3 |
| 更新时间 | 2021-01-26 |
| 上架时间 | 2020-12-12 |
| 评分 | 4.00/5 共2次评分 |
| 开发者 | spddl |
| 电子邮箱 | [email protected] |
| 付费类型 | free |
| 扩展官网 | https://github.com/spddl/Twitch-MuteAds |
| 支持的语言 | en |
| manifest.json | |
{
"update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
"manifest_version": 3,
"name": "Twitch MuteAds",
"description": "Mute Ads on Twitch",
"version": "0.0.3",
"icons": {
"48": "volume_off_googred500_48x48.png",
"128": "volume_off_googred500_108x108.png",
"256": "volume_off_googred500_144x144.png"
},
"content_scripts": [
{
"matches": [
"*:\/\/*.twitch.tv\/*"
],
"js": [
"content.js"
],
"run_at": "document_idle"
}
],
"background": {
"service_worker": "background.js"
},
"permissions": [
"tabs"
],
"host_permissions": [
"*:\/\/*.twitch.tv\/*"
],
"action": {
"default_title": "Twitch MuteAds",
"default_icon": {
"48": "volume_off_googred500_48x48.png",
"128": "volume_off_googred500_108x108.png",
"256": "volume_off_googred500_144x144.png"
}
}
} | |