Outside Sound

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

Vad är Outside Sound?

Outside Sound är en Chrome-tillägg utvecklad av thezanke, och dess huvudfunktion är "Applies a filter to currently playing audio and makes it sound like you have left the room.".

Tilläggsskärmbilder

screenshot
screenshot

Ladda ner Outside Sound-förlängningens CRX-fil

Ladda ner Outside Sound-filändelser i crx-format, installera Chrome-tillägg manuellt i webbläsaren eller dela crx-filerna med vänner för att enkelt installera Chrome-tillägg.

Användarmanual för Tillägg

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

Grundläggande Information om Tillägg

Namn Outside Sound Outside Sound
ID lebiilodohbecpcjkjfekdeckepapieh
Officiell webbadress https://chromewebstore.google.com/detail/outside-sound/lebiilodohbecpcjkjfekdeckepapieh
Beskrivning Applies a filter to currently playing audio and makes it sound like you have left the room.
Filstorlek 9.54 KB
Antal Installationer 94
Aktuell Version 1.0.2
Senast Uppdaterad 2020-10-19
Publiceringsdatum 2020-10-08
Betyg 5.00/5 Totalt 9 Betyg
Utvecklare thezanke
E-post [email protected]
Betalningssätt free
Tilläggswebbplats https://alexhoward.io
Stödda Språk 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"
            ]
        }
    ]
}