asmr mode
This extension will cancel the sound of youtube ads and replace the sound with asmr sounds.
Что такое asmr mode?
asmr mode - это расширение Chrome, разработанное olinawu3w, и его основная функция - "This extension will cancel the sound of youtube ads and replace the sound with asmr sounds.".
Снимки экрана расширения
Скачать файл CRX расширения asmr mode
Скачайте файлы расширений asmr mode в формате crx, установите расширения Chrome вручную в браузере или поделитесь файлами crx с друзьями, чтобы легко установить расширения Chrome.
Инструкции по использованию расширения
This extension will cancel the sound of youtube ads and replace the sound with ASMR sounds of the user's choice. Currently, there are 3 ASMR replacement sounds to choose from: 1. cozy fireplace 2. rain 3. garden sounds The user can also choose to not have any replacement sounds.
Основная информация о расширении
Название | asmr mode |
ID | gjknipgeimfanjlgmjjjdfoiakpeihal |
Официальный URL | https://chromewebstore.google.com/detail/asmr-mode/gjknipgeimfanjlgmjjjdfoiakpeihal |
Описание | This extension will cancel the sound of youtube ads and replace the sound with asmr sounds. |
Размер файла | 60.43 MB |
Количество установок | 124 |
Текущая Версия | 0.1.0 |
Последнее Обновление | 2021-01-20 |
Дата публикации | 2021-01-20 |
Рейтинг | 3.00/5 Всего 3 оценок |
Разработчик | olinawu3w |
Электронная почта | [email protected] |
Тип оплаты | free |
Поддерживаемые языки | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "asmr mode", "description": "This extension will cancel the sound of youtube ads and replace the sound with asmr sounds.", "version": "0.1.0", "manifest_version": 2, "icons": { "16": "media\/icon\/icon_small.png", "32": "media\/icon\/icon_small.png", "48": "media\/icon\/icon_big.png", "128": "media\/icon\/icon_big.png" }, "background": { "scripts": [ "background.js" ] }, "content_scripts": [ { "matches": [ "*:\/\/*.youtube.com\/*" ], "js": [ "content.js" ] } ], "options_page": "options.html", "permissions": [ "tabs", "http:\/\/*\/", "https:\/\/*\/" ], "browser_action": { "default_popup": "popup.html" } } |