Simple Audio Fader

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

What is Simple Audio Fader?

Simple Audio Fader is a Chrome extension developed by Stephen Poole, and its main feature is "A chrome extension that simply fades audio when another tab starts playing it.".

Extension Screenshots

screenshot

Download Simple Audio Fader Extension CRX File

Download Simple Audio Fader extension files in crx format, manually install Chrome extensions in the browser, or share the crx files with friends to easily install Chrome extensions.

Extension Usage Instructions

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

Supports HTML5 only.                    

Extension Basic Information

Name Simple Audio Fader Simple Audio Fader
ID eigflhpljhokkpinobkakammceckjang
Official URL https://chromewebstore.google.com/detail/simple-audio-fader/eigflhpljhokkpinobkakammceckjang
Description A chrome extension that simply fades audio when another tab starts playing it.
File Size 93.08 KB
Installation Count 38
Current Version 1.0.0
Last Updated 2017-04-07
Publish Date 2017-04-07
Developer Stephen Poole
Email [email protected]
Payment Type free
Supported Languages 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"
    }
}