AutoMute

Automatically mutes each new tab the instant it is opened.

什么是AutoMute?

AutoMute是由danbhentschel开发的Chrome扩展程序,该扩展的主要功能是“Automatically mutes each new tab the instant it is opened.”。

扩展截图

screenshot

下载AutoMute扩展crx文件

下载AutoMute扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。

扩展使用说明

                        Are you getting tired of obnoxious ads blaring sound while you're browsing? AutoMute automatically mutes every tab opened in your browser, effectively allowing you to opt-in to hear audio in a web page, instead of forcing you to opt-out.                    

扩展基本信息

名称 AutoMute AutoMute
ID kjcdcbhfpjkcjinohfaaihpcmpnpmpie
官方URL https://chromewebstore.google.com/detail/automute/kjcdcbhfpjkcjinohfaaihpcmpnpmpie
简介 Automatically mutes each new tab the instant it is opened.
文件大小 72.51 KB
安装次数 11,057
当前版本 2.1.1
更新时间 2017-04-10
上架时间 2017-04-10
评分 4.30/5 共92次评分
开发者 danbhentschel
电子邮箱 [email protected]
付费类型 free
支持的语言 en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "AutoMute",
    "description": "Automatically mutes each new tab the instant it is opened.",
    "version": "2.1.1",
    "permissions": [
        "tabs",
        "storage",
        "notifications"
    ],
    "background": {
        "scripts": [
            "background.js"
        ]
    },
    "browser_action": {
        "default_icon": {
            "19": "Speaker_19.png",
            "38": "Speaker_38.png"
        },
        "default_title": "AutoMute",
        "default_popup": "browserAction.html"
    },
    "commands": {
        "mute-all": {
            "suggested_key": {
                "default": "Alt+Shift+L"
            },
            "description": "Mute all tabs"
        },
        "mute-tab": {
            "suggested_key": {
                "default": "Alt+Shift+M"
            },
            "description": "Mute current tab"
        },
        "mute-other": {
            "suggested_key": {
                "default": "Alt+Shift+O"
            },
            "description": "Mute other tabs"
        }
    },
    "icons": {
        "16": "Speaker_16.png",
        "48": "Speaker_48.png",
        "128": "Speaker_128.png"
    },
    "options_ui": {
        "page": "options.html",
        "chrome_style": true
    }
}