Spotimute
This extension mutes the spotify & gaana audio when ad comes.
Spotimuteคืออะไร?
Spotimute เป็นส่วนขยายของ Chrome ที่พัฒนาโดย piedcipher.dev และคุณลักษณะหลักของมันคือ "This extension mutes the spotify & gaana audio when ad comes."
ภาพหน้าจอของส่วนขยาย
ดาวน์โหลดไฟล์ CRX ของส่วนขยาย Spotimute
ดาวน์โหลดไฟล์ส่วนขยาย Spotimute ในรูปแบบ crx และติดตั้งส่วนขยาย Chrome ด้วยตนเองในเบราว์เซอร์หรือแชร์ไฟล์ crx กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย Chrome อย่างง่ายดาย
คำแนะนำในการใช้ส่วนขยาย
This extension auto-mutes the Spotify and Gaana audio when an advertisement comes. Also, it auto-unmutes the audio when the ad is finished.
ข้อมูลพื้นฐานของส่วนขยาย
ชื่อ | Spotimute |
ID | mlkdhplkfffpgfkioemkjagaccinclgc |
URL อย่างเป็นทางการ | https://chromewebstore.google.com/detail/spotimute/mlkdhplkfffpgfkioemkjagaccinclgc |
คำอธิบาย | This extension mutes the spotify & gaana audio when ad comes. |
ขนาดไฟล์ | 19.98 KB |
จำนวนการติดตั้ง | 91 |
เวอร์ชันปัจจุบัน | 0.0.2 |
อัปเดตครั้งล่าสุด | 2022-07-27 |
วันที่เผยแพร่ | 2022-07-21 |
คะแนน | 5.00/5 รวมทั้งหมด 3 คะแนน |
ผู้พัฒนา | piedcipher.dev |
อีเมล | [email protected] |
ประเภทการชำระเงิน | free |
เว็บไซต์ส่วนขยาย | https://twitter.com/piedcipher |
URL หน้าช่วยเหลือ | https://github.com/piedcipher/spotimute/issues |
ภาษาที่รองรับ | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "Spotimute", "version": "0.0.2", "description": "This extension mutes the spotify & gaana audio when ad comes.", "manifest_version": 3, "author": "Tirth Patel", "action": { "default_popup": "index.html", "default_title": "Spotimute" }, "content_scripts": [ { "matches": [ "https:\/\/open.spotify.com\/*" ], "js": [ "spotify.js" ] }, { "matches": [ "https:\/\/gaana.com\/*" ], "js": [ "gaana.js" ] } ], "icons": { "16": ".\/assets\/_16.png", "48": ".\/assets\/_48.png", "128": ".\/assets\/_128.png" } } |