Outside Sound

Applies a filter to currently playing audio and makes it sound like you have left the room.

Qu'est-ce que Outside Sound ?

Outside Sound est une extension Chrome développée par thezanke, et sa fonction principale est "Applies a filter to currently playing audio and makes it sound like you have left the room.".

Captures d'Écran de l'Extension

screenshot
screenshot

Télécharger le fichier CRX de l'extension Outside Sound

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

                        When activated, creates a lowpass filter node in the HTML5 Audio API sound graph and routes the sound from all 

Informations de Base sur l'Extension

Nom Outside Sound Outside Sound
ID lebiilodohbecpcjkjfekdeckepapieh
URL Officiel https://chromewebstore.google.com/detail/outside-sound/lebiilodohbecpcjkjfekdeckepapieh
Description Applies a filter to currently playing audio and makes it sound like you have left the room.
Taille du Fichier 9.54 KB
Nombre d'Installations 94
Version Actuelle 1.0.2
Dernière Mise à Jour 2020-10-19
Date de Publication 2020-10-08
Évaluation 5.00/5 Total 9 Évaluations
Développeur thezanke
Email [email protected]
Type de Paiement free
Site Web de l'Extension https://alexhoward.io
Langues Prises en Charge en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Outside Sound",
    "version": "1.0.2",
    "manifest_version": 2,
    "description": "Applies a filter to currently playing audio and makes it sound like you have left the room.",
    "homepage_url": "https:\/\/alexhoward.io",
    "icons": {
        "128": "icons\/icon128-outside.png"
    },
    "browser_action": {
        "default_icon": "icons\/icon128-inside.png",
        "default_title": "Step outside ->"
    },
    "background": {
        "scripts": [
            "src\/background.js"
        ]
    },
    "content_scripts": [
        {
            "matches": [
                "https:\/\/*\/*",
                "http:\/\/*\/*"
            ],
            "js": [
                "src\/inject.js"
            ]
        }
    ]
}