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 |
| 官方網址 | 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"
}
}
} | |