Simple Audio Fader

A chrome extension that simply fades audio when another tab starts playing it.

什么是Simple Audio Fader?

Simple Audio Fader是由Stephen Poole开发的Chrome扩展程序,该扩展的主要功能是“A chrome extension that simply fades audio when another tab starts playing it.”。

扩展截图

screenshot

下载Simple Audio Fader扩展crx文件

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

扩展使用说明

                        Hear what you intend to, not what an off-screen ad wants you to.

Supports HTML5 only.                    

扩展基本信息

名称 Simple Audio Fader Simple Audio Fader
ID eigflhpljhokkpinobkakammceckjang
官方URL https://chromewebstore.google.com/detail/simple-audio-fader/eigflhpljhokkpinobkakammceckjang
简介 A chrome extension that simply fades audio when another tab starts playing it.
文件大小 93.08 KB
安装次数 38
当前版本 1.0.0
更新时间 2017-04-07
上架时间 2017-04-07
开发者 Stephen Poole
电子邮箱 [email protected]
付费类型 free
支持的语言 en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Simple Audio Fader",
    "description": "A chrome extension that simply fades audio when another tab starts playing it.",
    "content_security_policy": "script-src 'self' https:\/\/www.google-analytics.com; object-src 'self'",
    "browser_action": {
        "default_popup": "options.html"
    },
    "content_scripts": [
        {
            "matches": [
                "*:\/\/*\/*"
            ],
            "js": [
                "content.compiled.js"
            ],
            "run_at": "document_idle"
        }
    ],
    "background": {
        "page": "background.html",
        "persistent": false
    },
    "permissions": [
        "tabs"
    ],
    "version": "1.0.0",
    "icons": {
        "16": "icon16.png",
        "48": "icon48.png",
        "128": "icon128.png"
    }
}