Spotimute
This extension mutes the spotify & gaana audio when ad comes.
Что такое Spotimute?
Spotimute - это расширение Chrome, разработанное piedcipher.dev, и его основная функция - "This extension mutes the spotify & gaana audio when ad comes.".
Снимки экрана расширения
Скачать файл CRX расширения Spotimute
Скачайте файлы расширений Spotimute в формате crx, установите расширения Chrome вручную в браузере или поделитесь файлами crx с друзьями, чтобы легко установить расширения Chrome.
Инструкции по использованию расширения
This extension auto-mutes the Spotify and Gaana audio when an advertisement comes. Also, it auto-unmutes the audio when the ad is finished.
Основная информация о расширении
Название | Spotimute |
ID | mlkdhplkfffpgfkioemkjagaccinclgc |
Официальный URL | https://chromewebstore.google.com/detail/spotimute/mlkdhplkfffpgfkioemkjagaccinclgc |
Описание | This extension mutes the spotify & gaana audio when ad comes. |
Размер файла | 19.98 KB |
Количество установок | 91 |
Текущая Версия | 0.0.2 |
Последнее Обновление | 2022-07-27 |
Дата публикации | 2022-07-21 |
Рейтинг | 5.00/5 Всего 3 оценок |
Разработчик | piedcipher.dev |
Электронная почта | [email protected] |
Тип оплаты | free |
Официальный сайт расширения | https://twitter.com/piedcipher |
URL страницы помощи | https://github.com/piedcipher/spotimute/issues |
Поддерживаемые языки | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "Spotimute", "version": "0.0.2", "description": "This extension mutes the spotify & gaana audio when ad comes.", "manifest_version": 3, "author": "Tirth Patel", "action": { "default_popup": "index.html", "default_title": "Spotimute" }, "content_scripts": [ { "matches": [ "https:\/\/open.spotify.com\/*" ], "js": [ "spotify.js" ] }, { "matches": [ "https:\/\/gaana.com\/*" ], "js": [ "gaana.js" ] } ], "icons": { "16": ".\/assets\/_16.png", "48": ".\/assets\/_48.png", "128": ".\/assets\/_128.png" } } |