Outside Sound
Applies a filter to currently playing audio and makes it sound like you have left the room.
Что такое Outside Sound?
Outside Sound - это расширение Chrome, разработанное thezanke, и его основная функция - "Applies a filter to currently playing audio and makes it sound like you have left the room.".
Снимки экрана расширения
Скачать файл CRX расширения Outside Sound
Скачайте файлы расширений Outside Sound в формате crx, установите расширения Chrome вручную в браузере или поделитесь файлами crx с друзьями, чтобы легко установить расширения Chrome.
Инструкции по использованию расширения
When activated, creates a lowpass filter node in the HTML5 Audio API sound graph and routes the sound from all Основная информация о расширении
| Название | |
| ID | lebiilodohbecpcjkjfekdeckepapieh |
| Официальный URL | https://chromewebstore.google.com/detail/outside-sound/lebiilodohbecpcjkjfekdeckepapieh |
| Описание | Applies a filter to currently playing audio and makes it sound like you have left the room. |
| Размер файла | 9.54 KB |
| Количество установок | 94 |
| Текущая Версия | 1.0.2 |
| Последнее Обновление | 2020-10-19 |
| Дата публикации | 2020-10-08 |
| Рейтинг | 5.00/5 Всего 9 оценок |
| Разработчик | thezanke |
| Электронная почта | [email protected] |
| Тип оплаты | free |
| Официальный сайт расширения | https://alexhoward.io |
| Поддерживаемые языки | 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"
]
}
]
} | |