Mute Other Tabs

Smart Mute other tabs automatically even without clicking.

Mute Other Tabs là gì?

Mute Other Tabs là một tiện ích mở rộng Chrome được phát triển bởi ugurkaya88, và tính năng chính của nó là "Smart Mute other tabs automatically even without clicking.".

Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng

screenshot
screenshot

Tải xuống tệp CRX của tiện ích mở rộng Mute Other Tabs

Tải xuống các tệp mở rộng Mute Other Tabs dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.

Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng

                        'Smart Mute' other tabs automatically even without clicking. 

It is irritating to have multiple tabs playing audio in the background and you can't even find out where that sound comes from.

This extension handles this for you automatically and you don't even need to do anything else but installing the extension.

If you want to control the behaviour of the extension, you can simple use the extension popup user interface;
* to change smart mute behaviour
* to mute / unmute other tabs

or you can use the predefined shortcuts for muting and unmuting.

Mute:
* CTRL + SHIFT + I
* COMMAND + SHIFT + I

Unmute:
* CTRL + SHIFT + U
* COMMAND + SHIFT + U                    

Thông Tin Cơ Bản về Tiện Ích Mở Rộng

Tên Mute Other Tabs Mute Other Tabs
ID pcdkbmcaonbomnccedjcgjmafdocojen
URL Chính Thức https://chrome.google.com/webstore/detail/mute-other-tabs/pcdkbmcaonbomnccedjcgjmafdocojen
Mô tả Smart Mute other tabs automatically even without clicking.
Kích Thước Tệp 781 KB
Số Lần Cài Đặt 145
Phiên Bản Hiện Tại 0.0.11
Cập Nhật Lần Cuối 2018-08-24
Ngày Phát Hành 2018-08-24
Đánh Giá 3.00/5 Tổng số 2 Đánh Giá
Nhà Phát Triển ugurkaya88
Email [email protected]
Loại Thanh Toán free
Trang Web Mở Rộng https://gitlab.com/ugurkaya88/chrome-mute-other-tabs
URL Trang Trợ Giúp https://gitlab.com/ugurkaya88/chrome-mute-other-tabs
Ngôn Ngữ Được Hỗ Trợ en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Mute Other Tabs",
    "short_name": "Mute Others",
    "version": "0.0.11",
    "description": "Smart Mute other tabs automatically even without clicking.",
    "author": "U\u011fur Kaya",
    "homepage_url": "https:\/\/gitlab.com\/ugurkaya88\/chrome-mute-other-tabs",
    "browser_action": {
        "default_popup": "popup\/popup.html",
        "default_icon": {
            "16": "images\/icon_16x16.png",
            "32": "images\/icon_32x32.png",
            "48": "images\/icon_48x48.png",
            "128": "images\/icon_128x128.png"
        }
    },
    "commands": {
        "mute-others": {
            "suggested_key": {
                "default": "Ctrl+Shift+I",
                "mac": "Command+Shift+I"
            },
            "description": "Mute other tabs"
        },
        "unmute-others": {
            "suggested_key": {
                "default": "Ctrl+Shift+U",
                "mac": "Command+Shift+U"
            },
            "description": "Unmute other tabs"
        }
    },
    "permissions": [
        "tabs",
        "storage"
    ],
    "background": {
        "scripts": [
            "shared\/shared.js",
            "background.js"
        ],
        "persistent": false
    },
    "icons": {
        "16": "images\/icon_16x16.png",
        "32": "images\/icon_32x32.png",
        "48": "images\/icon_48x48.png",
        "128": "images\/icon_128x128.png"
    },
    "manifest_version": 2
}