Clever Mute
This extension mutes all sites by default. If a site tries to play any sound you'll be notified so you can decide what to do
Clever Muteคืออะไร?
Clever Mute เป็นส่วนขยายของ Chrome ที่พัฒนาโดย https://www.edertone.com และคุณลักษณะหลักของมันคือ "This extension mutes all sites by default. If a site tries to play any sound you'll be notified so you can decide what to do"
ภาพหน้าจอของส่วนขยาย
ดาวน์โหลดไฟล์ CRX ของส่วนขยาย Clever Mute
ดาวน์โหลดไฟล์ส่วนขยาย Clever Mute ในรูปแบบ crx และติดตั้งส่วนขยาย Chrome ด้วยตนเองในเบราว์เซอร์หรือแชร์ไฟล์ crx กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย Chrome อย่างง่ายดาย
คำแนะนำในการใช้ส่วนขยาย
If you like this extension and want to help the developer, please consider making a donation: https://www.paypal.me/clevermute When this extension is installed, every new website that is loaded by the browser will be muted by default unless it's found on the extension's whitelist. Several features allow you to control which sites sound and which don't: - You can mute or unmute any site just by clicking the extension icon, just like it's normally done with the tab speaker icon. - When a website starts trying to play sounds you'll be notified by this extension. Then you can unmute it for the current browser session or add it to the white list. If you ignore the notification or close it, the website will be automatically added to black list. - A website that is whitelisted will be unmuted by default and you won't receive any notification. - KILLER FEATURE: This extension is only triggered when a tab tries to play audio. This improves the extension efficiency and avoids having unnecessary muted speaker icons on tabs that do not sound, giving a cleaner appearance to the browser tabs. - The extension icon gives you information about the current website white or black list status: If the speaker icon is white, the url is whitelisted. If the speaker icon is strikethrough and contains a black dot, the url is blacklisted. Simple, effective and powerful Source code (If you want to contribute): https://github.com/edertone/CleverMute
ข้อมูลพื้นฐานของส่วนขยาย
ชื่อ | Clever Mute |
ID | eadinjjkfelcokdlmoechclnmmmjnpdh |
URL อย่างเป็นทางการ | https://chromewebstore.google.com/detail/clever-mute/eadinjjkfelcokdlmoechclnmmmjnpdh |
คำอธิบาย | This extension mutes all sites by default. If a site tries to play any sound you'll be notified so you can decide what to do |
ขนาดไฟล์ | 102 KB |
จำนวนการติดตั้ง | 1,131 |
เวอร์ชันปัจจุบัน | 0.5.1 |
อัปเดตครั้งล่าสุด | 2021-12-31 |
วันที่เผยแพร่ | 2018-09-16 |
คะแนน | 3.88/5 รวมทั้งหมด 34 คะแนน |
ผู้พัฒนา | https://www.edertone.com |
อีเมล | [email protected] |
ประเภทการชำระเงิน | free |
เว็บไซต์ส่วนขยาย | https://github.com/edertone/CleverMute |
URL หน้าช่วยเหลือ | https://github.com/edertone/CleverMute/blob/main/README.md |
ภาษาที่รองรับ | en-US |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "Clever Mute", "short_name": "CleverMute", "description": "This extension mutes all sites by default. If a site tries to play any sound you'll be notified so you can decide what to do", "version": "0.5.1", "browser_action": { "default_icon": "resources\/shared\/images\/muted_icon_128.png", "default_title": "Enable\/disable website audio" }, "icons": { "16": "resources\/shared\/images\/muted_icon_16.png", "32": "resources\/shared\/images\/muted_icon_32.png", "48": "resources\/shared\/images\/muted_icon_48.png", "128": "resources\/shared\/images\/muted_icon_128.png" }, "background": { "scripts": [ "js\/libs\/TurboCommons-JS\/TurboCommons-JS5-0.3.841.js", "js\/model\/Model.js", "js\/managers\/ListsManager.js", "js\/controller\/ControlTabs.js", "js\/controller\/ControlNotifications.js", "index.js" ] }, "permissions": [ "storage", "notifications", "tabs", "activeTab" ] } |