Mute Tab

Have full-control over noisy tabs (active tab, all tabs, all other tabs, and more) with keyboard shortcut support

Mute Tabคืออะไร?

Mute Tab เป็นส่วนขยายของ Chrome ที่พัฒนาโดย balvin.perrie และคุณลักษณะหลักของมันคือ "Have full-control over noisy tabs (active tab, all tabs, all other tabs, and more) with keyboard shortcut support"

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

screenshot
screenshot

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

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

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

                        This browser extension provides control over muting, unmuting, and closing noisy tabs. When a tab is muted, it can still play video and audio streams silently, ensuring that unexpected noises from browser tabs, particularly ads and banners, don't interrupt your work. This feature is especially useful during meetings or online conferences. You can mute or unmute tabs with just one click. It uses a nonpersistent background script, which means it doesn't consume any resources unless actively used by the user.

Key Features:
1. Mute individual tabs
2. Mute other tabs in the current window
3. Mute tabs in other windows
4. Mute all tabs except the active one
5. Mute all incognito tabs
6. Monitor and mute newly opened tabs
7. Support dark mode (dark theme)

This extension allows you to toggle the muting state of the currently active tab, tabs in the current window, tabs in other windows, and all tabs except the active one. You can mute and unmute specific noisy tabs or enforce the muting state for all matching tabs. Additionally, you can close other noisy tabs using a single keyboard shortcut.

You can access the extension's controls either through the toolbar popup or by setting custom keyboard shortcuts, based on your preference. User-defined keyboard shortcuts provide access to all supported actions for muting and unmuting tabs.

Please note that this extension does not support custom rules for muting specific hostnames, as this functionality is already available in your browser and doesn't require duplication.

This project is open-source, and you can find the source code at https://github.com/balvin-perrie/mute-tab/.                    

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

ชื่อ Mute Tab Mute Tab
ID behengbkghjbommkdcbnpfhcahfigoll
URL อย่างเป็นทางการ https://chromewebstore.google.com/detail/mute-tab/behengbkghjbommkdcbnpfhcahfigoll
คำอธิบาย Have full-control over noisy tabs (active tab, all tabs, all other tabs, and more) with keyboard shortcut support
ขนาดไฟล์ 63.95 KB
จำนวนการติดตั้ง 962
เวอร์ชันปัจจุบัน 0.2.2
อัปเดตครั้งล่าสุด 2024-01-30
วันที่เผยแพร่ 2019-04-30
คะแนน 4.50/5 รวมทั้งหมด 4 คะแนน
ผู้พัฒนา balvin.perrie
อีเมล [email protected]
ประเภทการชำระเงิน free
เว็บไซต์ส่วนขยาย https://webextension.org/listing/mute-tab.html
URL หน้าช่วยเหลือ https://webextension.org/listing/mute-tab.html
URL หน้านโยบายความเป็นส่วนตัว https://add0n.com/policies/balvin.perrie.txt
ภาษาที่รองรับ de,en,fr,nl,es,it,pl,pt-BR,pt-PT,ru,zh-CN,ja
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 3,
    "version": "0.2.2",
    "name": "Mute Tab",
    "description": "__MSG_description__",
    "default_locale": "en",
    "permissions": [
        "storage"
    ],
    "optional_permissions": [
        "contextMenus"
    ],
    "background": {
        "service_worker": "worker.js"
    },
    "homepage_url": "https:\/\/webextension.org\/listing\/mute-tab.html",
    "icons": {
        "16": "\/data\/icons\/16.png",
        "32": "\/data\/icons\/32.png",
        "48": "\/data\/icons\/48.png",
        "64": "\/data\/icons\/64.png",
        "128": "\/data\/icons\/128.png",
        "256": "\/data\/icons\/256.png",
        "512": "\/data\/icons\/512.png"
    },
    "action": {
        "default_popup": "\/data\/popup\/index.html"
    },
    "commands": {
        "_execute_action": [],
        "mute-tab": {
            "description": "Mute Tab"
        },
        "mute-other-tabs-window": {
            "description": "Mute Other Noisy Tabs in This Window"
        },
        "mute-tabs-other-windows": {
            "description": "Mute Tabs in Other Windows"
        },
        "mute-all-other-tabs": {
            "description": "Mute All Other Tabs"
        },
        "unmute-tab": {
            "description": "Stop Muting Tab"
        },
        "unmute-other-tabs-window": {
            "description": "Stop Muting Other Tabs in This Window"
        },
        "unmute-tabs-other-windows": {
            "description": "Stop Muting Tabs in Other Windows"
        },
        "unmute-all-other-tabs": {
            "description": "Stop Muting All Other Tabs"
        },
        "close-other-noisy-tabs-window": {
            "description": "Close Other Noisy Tabs in This Window"
        },
        "close-noisy-tabs-other-windows": {
            "description": "Close Noisy Tabs in Other Windows"
        },
        "close-all-other-noisy-tabs": {
            "description": "Close All Other Noisy Tabs"
        }
    }
}