Control sound

This extension control all the sound in your page

Qu'est-ce que Control sound ?

Control sound est une extension Chrome développée par Pow-up, et sa fonction principale est "This extension control all the sound in your page".

Télécharger le fichier CRX de l'extension Control sound

Téléchargez les fichiers d'extension Control sound 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

                                            

Informations de Base sur l'Extension

Nom Control sound Control sound
ID modfdbbnnkgkddgjinphbadkmkhhpgee
URL Officiel https://chromewebstore.google.com/detail/control-sound/modfdbbnnkgkddgjinphbadkmkhhpgee
Description This extension control all the sound in your page
Taille du Fichier 40.54 KB
Nombre d'Installations 10
Version Actuelle 1.0
Dernière Mise à Jour 2016-10-10
Date de Publication 2016-10-10
Développeur Pow-up
Email [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": "Control sound",
    "description": "This extension control all the sound in your page",
    "version": "1.0",
    "background": {
        "scripts": [
            "background.js"
        ]
    },
    "browser_action": {
        "default_icon": "icon.png",
        "default_popup": "popup.html",
        "default_title": "Change volume"
    },
    "permissions": [
        "activeTab",
        "tabs",
        "https:\/\/ajax.googleapis.com\/"
    ],
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "js": [
                "jquery-1.11.3.min.js",
                "background.js"
            ],
            "all_frames": true
        }
    ]
}