Simple Audio Fader
A chrome extension that simply fades audio when another tab starts playing it.
Qu'est-ce que Simple Audio Fader ?
Simple Audio Fader est une extension Chrome développée par Stephen Poole, et sa fonction principale est "A chrome extension that simply fades audio when another tab starts playing it.".
Captures d'Écran de l'Extension
Télécharger le fichier CRX de l'extension Simple Audio Fader
Téléchargez les fichiers d'extension Simple Audio Fader au format crx, installez manuellement les extensions Chrome dans le navigateur ou partagez les fichiers crx avec des amis pour installer facilement les extensions Chrome.
Instructions d'Utilisation de l'Extension
Hear what you intend to, not what an off-screen ad wants you to. Supports HTML5 only.
Informations de Base sur l'Extension
Nom | Simple Audio Fader |
ID | eigflhpljhokkpinobkakammceckjang |
URL Officiel | https://chromewebstore.google.com/detail/simple-audio-fader/eigflhpljhokkpinobkakammceckjang |
Description | A chrome extension that simply fades audio when another tab starts playing it. |
Taille du Fichier | 93.08 KB |
Nombre d'Installations | 38 |
Version Actuelle | 1.0.0 |
Dernière Mise à Jour | 2017-04-07 |
Date de Publication | 2017-04-07 |
Développeur | Stephen Poole |
[email protected] | |
Type de Paiement | free |
Langues Prises en Charge | 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" } } |