Auto Tab Mute

Automatically mutes background tabs

Auto Tab Muteคืออะไร?

Auto Tab Mute เป็นส่วนขยายของ Chrome ที่พัฒนาโดย David Welsh และคุณลักษณะหลักของมันคือ "Automatically mutes background tabs"

ภาพหน้าจอของส่วนขยาย

screenshot
screenshot

ดาวน์โหลดไฟล์ CRX ของส่วนขยาย Auto Tab Mute

ดาวน์โหลดไฟล์ส่วนขยาย Auto Tab Mute ในรูปแบบ crx และติดตั้งส่วนขยาย Chrome ด้วยตนเองในเบราว์เซอร์หรือแชร์ไฟล์ crx กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย Chrome อย่างง่ายดาย

คำแนะนำในการใช้ส่วนขยาย

                        Extension to automatically mute background tabs if the current tab is playing audio. This allows for fast switching between different audio playing tabs without manually muting and unmuting. This extension can be toggled on/off by a button added to the browser interface or by a keyboard shortcut (Ctrl+Shift+U/Cmd+Shift+U).

Updates
Version 3.1:
- Fixed behaviour when "Apply across windows" was selected and the active window was not on an audible tab but a background window had an audible tab

Version 3.0:
- Added experimental option for 'Active Tab' strategy to apply it across multiple windows (please send any issues to the listed email address)
- Added 'Mute All' strategy to mute every tab and prevent any new tabs playing audio
- Improved stability of 'Allow List' strategy
- Updated logo and branding of the extension
- Updated UI
- Updated to manifest version 3 and changed to use service workers

Version 2.1:
- Added workaround for chromium issue 1213925 which prevents fetching tab info when clicking on a new tab

Version 2.0:
- Added popup upon clicking the tray icon to allow controlling the extensions behaviour
- Added ability to select muting strategy, with "Active tab" being equivalent to the behaviour of the original extension and "Allow List" allowing you to select which tabs should be allowed to play audio by selecting the check boxes next to the title of the tab in the popup
- The behaviour should be the same as before if the "Active tab" strategy is selected, only difference is an extra click to enable/disable the extension since the tray icon now shows the popup on click
- Please contact me at the listed email address if any desired behaviour has been changed or if you have suggestions for other muting strategies to be implemented

Source available at: github.com/david-welsh/auto-tab-mute                    

ข้อมูลพื้นฐานของส่วนขยาย

ชื่อ Auto Tab Mute Auto Tab Mute
ID dnfohmfimbkmondbppcnkgjlnfnbppok
URL อย่างเป็นทางการ https://chromewebstore.google.com/detail/auto-tab-mute/dnfohmfimbkmondbppcnkgjlnfnbppok
คำอธิบาย Automatically mutes background tabs
ขนาดไฟล์ 463 KB
จำนวนการติดตั้ง 1,382
เวอร์ชันปัจจุบัน 3.1
อัปเดตครั้งล่าสุด 2023-10-17
วันที่เผยแพร่ 2019-05-31
คะแนน 4.53/5 รวมทั้งหมด 19 คะแนน
ผู้พัฒนา David Welsh
อีเมล [email protected]
ประเภทการชำระเงิน free
ภาษาที่รองรับ en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 3,
    "name": "Auto Tab Mute",
    "version": "3.1",
    "icons": {
        "16": "assets\/icons\/Logo-16x16.png",
        "32": "assets\/icons\/Logo-48x48.png",
        "128": "assets\/icons\/Logo-128x128.png"
    },
    "description": "Automatically mutes background tabs",
    "short_name": "ATM",
    "permissions": [
        "tabs",
        "storage"
    ],
    "author": "David Welsh",
    "minimum_chrome_version": "88",
    "action": {
        "default_popup": "popup.html",
        "default_icon": {
            "16": "assets\/icons\/Logo-16x16.png",
            "32": "assets\/icons\/Logo-48x48.png",
            "128": "assets\/icons\/Logo-128x128.png"
        },
        "default_title": "ATM",
        "chrome_style": false
    },
    "background": {
        "service_worker": "js\/background.bundle.js"
    },
    "commands": {
        "toggle_extension": {
            "description": "Toggle the extension on\/off",
            "suggested_key": {
                "windows": "Ctrl+Shift+U",
                "mac": "Command+Shift+U",
                "chromeos": "Ctrl+Shift+U",
                "linux": "Ctrl+Shift+U"
            }
        }
    }
}