Twitch MuteAds
Mute Ads on Twitch
Twitch MuteAdsคืออะไร?
Twitch MuteAds เป็นส่วนขยายของ Chrome ที่พัฒนาโดย spddl และคุณลักษณะหลักของมันคือ "Mute Ads on Twitch"
ภาพหน้าจอของส่วนขยาย
ดาวน์โหลดไฟล์ CRX ของส่วนขยาย Twitch MuteAds
ดาวน์โหลดไฟล์ส่วนขยาย Twitch MuteAds ในรูปแบบ crx และติดตั้งส่วนขยาย Chrome ด้วยตนเองในเบราว์เซอร์หรือแชร์ไฟล์ crx กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย Chrome อย่างง่ายดาย
คำแนะนำในการใช้ส่วนขยาย
Mutes advertisements on Twitch and reactivates them after the advertisement.
ข้อมูลพื้นฐานของส่วนขยาย
ชื่อ | Twitch MuteAds |
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" } } } |