Outside Sound

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

What is Outside Sound?

Outside Sound is a Chrome extension developed by thezanke, and its main feature is "Applies a filter to currently playing audio and makes it sound like you have left the room.".

Extension Screenshots

screenshot
screenshot

Download Outside Sound Extension CRX File

Download Outside Sound 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

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

Extension Basic Information

Name Outside Sound Outside Sound
ID lebiilodohbecpcjkjfekdeckepapieh
Official URL 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.
File Size 9.54 KB
Installation Count 94
Current Version 1.0.2
Last Updated 2020-10-19
Publish Date 2020-10-08
Rating 5.00/5 Total 9 Ratings
Developer thezanke
Email [email protected]
Payment Type free
Extension Website https://alexhoward.io
Supported Languages 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"
            ]
        }
    ]
}