Simple Audio Fader
A chrome extension that simply fades audio when another tab starts playing it.
Wat is Simple Audio Fader?
Simple Audio Fader is een Chrome-extensie ontwikkeld door Stephen Poole, en de belangrijkste functie is "A chrome extension that simply fades audio when another tab starts playing it.".
Extensie Screenshots
Download het CRX-bestand van de extensie Simple Audio Fader
Download Simple Audio Fader-extensiebestanden in crx-indeling, installeer Chrome-extensies handmatig in de browser of deel de crx-bestanden met vrienden om Chrome-extensies eenvoudig te installeren.
Instructies voor het Gebruik van de Extensie
Hear what you intend to, not what an off-screen ad wants you to. Supports HTML5 only.
Basisinformatie over de Extensie
Naam | Simple Audio Fader |
ID | eigflhpljhokkpinobkakammceckjang |
Officiële URL | https://chromewebstore.google.com/detail/simple-audio-fader/eigflhpljhokkpinobkakammceckjang |
Beschrijving | A chrome extension that simply fades audio when another tab starts playing it. |
Bestandsgrootte | 93.08 KB |
Aantal Installaties | 38 |
Huidige Versie | 1.0.0 |
Laatst Bijgewerkt | 2017-04-07 |
Publicatiedatum | 2017-04-07 |
Ontwikkelaar | Stephen Poole |
[email protected] | |
Betalingswijze | free |
Ondersteunde Talen | 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" } } |