Outside Sound

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

Co to jest Outside Sound?

Outside Sound to rozszerzenie Chrome opracowane przez thezanke, a jego główną funkcją jest „Applies a filter to currently playing audio and makes it sound like you have left the room.”.

Zrzuty ekranu rozszerzenia

screenshot
screenshot

Pobierz plik CRX rozszerzenia Outside Sound

Pobierz pliki rozszerzeń Outside Sound w formacie crx, zainstaluj ręcznie rozszerzenia Chrome w przeglądarce lub udostępnij pliki crx znajomym, aby łatwo zainstalować rozszerzenia Chrome.

Instrukcja Użytkowania Rozszerzenia

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

Podstawowe informacje o rozszerzeniu

Nazwa Outside Sound Outside Sound
ID lebiilodohbecpcjkjfekdeckepapieh
Oficjalny URL https://chromewebstore.google.com/detail/outside-sound/lebiilodohbecpcjkjfekdeckepapieh
Opis Applies a filter to currently playing audio and makes it sound like you have left the room.
Rozmiar pliku 9.54 KB
Liczba instalacji 94
Aktualna Wersja 1.0.2
Ostatnia Aktualizacja 2020-10-19
Data Publikacji 2020-10-08
Ocena 5.00/5 Łącznie 9 Oceny
Deweloper thezanke
E-mail [email protected]
Typ Płatności free
Strona Rozszerzenia https://alexhoward.io
Obsługiwane Języki 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"
            ]
        }
    ]
}