Mute All

Stops unwanted loud web page sounds by automatically muting your tabs except if you whitelist the domain

Mute All là gì?

Mute All là một tiện ích mở rộng Chrome được phát triển bởi Gerry Labs, và tính năng chính của nó là "Stops unwanted loud web page sounds by automatically muting your tabs except if you whitelist the domain".

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

screenshot

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

Tải xuống các tệp mở rộng Mute All 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

                        Nobody asked for loud autoplay videos. It’s a dark usability pattern and it’s not something people ever desired or wanted.

This extension will mute all tabs by default unless you whitelist the domain. The whitelist is stored locally, and the extension will remember it, so you don't have to unmute sites you trust.                    

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

Tên Mute All Mute All
ID eampgdbhpjcacjjfcgnpncjkeibipmjn
URL Chính Thức https://chromewebstore.google.com/detail/mute-all/eampgdbhpjcacjjfcgnpncjkeibipmjn
Mô tả Stops unwanted loud web page sounds by automatically muting your tabs except if you whitelist the domain
Kích Thước Tệp 44.5 KB
Số Lần Cài Đặt 342
Phiên Bản Hiện Tại 1.3
Cập Nhật Lần Cuối 2017-09-04
Ngày Phát Hành 2017-09-04
Đánh Giá 5.00/5 Tổng số 4 Đánh Giá
Nhà Phát Triển Gerry Labs
Email [email protected]
Loại Thanh Toán free
Ngôn Ngữ Được Hỗ Trợ en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Mute All",
    "short_name": "Mute All",
    "description": "Stops unwanted loud web page sounds by automatically muting your tabs except if you whitelist the domain",
    "version": "1.3",
    "minimum_chrome_version": "55",
    "background": {
        "scripts": [
            "mute_tabs.js",
            "jquery-3.2.1.min.js"
        ],
        "persistent": true
    },
    "browser_action": {
        "default_icon": ".\/icon\/logo.png",
        "default_popup": "popup.html"
    },
    "icons": {
        "128": ".\/icon\/logo.png"
    },
    "content_security_policy": "script-src 'self' https:\/\/ajax.googleapis.com; object-src 'self'",
    "content_scripts": [
        {
            "matches": [
                "https:\/\/www.youtube.com\/*",
                "*:\/\/vimeo.com\/*",
                "*:\/\/player.vimeo.com\/*",
                "https:\/\/soundcloud.com\/*",
                "https:\/\/www.twitch.tv\/*",
                "https:\/\/player.twitch.tv\/*",
                "https:\/\/twitter.com\/*",
                "https:\/\/vine.co\/*",
                "*:\/\/mynoise.net\/*",
                "https:\/\/www.kickstarter.com\/*",
                "*:\/\/store.steampowered.com\/*",
                "https:\/\/vid.me\/*",
                "*:\/\/www.dailymotion.com\/*",
                "*:\/\/www.vevo.com\/*",
                "*:\/\/www.cnn.com\/*",
                "*:\/\/edition.cnn.com\/*",
                "*:\/\/www.liveleak.com\/*"
            ],
            "all_frames": true,
            "js": [
                "unmute_content.js",
                "jquery-3.2.1.min.js",
                "popup.js"
            ]
        }
    ],
    "externally_connectable": {
        "matches": [
            "https:\/\/www.youtube.com\/*",
            "*:\/\/vimeo.com\/*",
            "*:\/\/player.vimeo.com\/*",
            "https:\/\/soundcloud.com\/*",
            "https:\/\/www.twitch.tv\/*",
            "https:\/\/player.twitch.tv\/*",
            "https:\/\/twitter.com\/*",
            "https:\/\/vine.co\/*",
            "*:\/\/mynoise.net\/*",
            "https:\/\/www.kickstarter.com\/*",
            "*:\/\/store.steampowered.com\/*",
            "https:\/\/vid.me\/*",
            "*:\/\/www.dailymotion.com\/*",
            "*:\/\/www.vevo.com\/*",
            "*:\/\/www.cnn.com\/*",
            "*:\/\/edition.cnn.com\/*",
            "*:\/\/www.liveleak.com\/*"
        ]
    },
    "permissions": [
        "storage",
        "webNavigation",
        "tabs"
    ]
}