Ad Mute for spotify.com
Automatically mutes advertisements between songs at spotify.com
Что такое Ad Mute for spotify.com?
Ad Mute for spotify.com - это расширение Chrome, разработанное arismelachroinos, и его основная функция - "Automatically mutes advertisements between songs at spotify.com".
Снимки экрана расширения
Скачать файл CRX расширения Ad Mute for spotify.com
Скачайте файлы расширений Ad Mute for spotify.com в формате crx, установите расширения Chrome вручную в браузере или поделитесь файлами crx с друзьями, чтобы легко установить расширения Chrome.
Инструкции по использованию расширения
This extension has no UI. It automatically mutes the chrome tab whenever an advertisement is playing, and unmutes it as soon as it is finished. This extension has nothing to do with the Spotify company whatsoever. I put a lot of time and effort making this free extension. If you enjoy it and you wish to support me, you can donate via this link: https://www.paypal.com/donate/?hosted_button_id=BTK97P92ZF29U
Основная информация о расширении
Название | Ad Mute for spotify.com |
ID | mjncgoplaadnohdddphicedebkafaphe |
Официальный URL | https://chromewebstore.google.com/detail/ad-mute-for-spotifycom/mjncgoplaadnohdddphicedebkafaphe |
Описание | Automatically mutes advertisements between songs at spotify.com |
Размер файла | 36.73 KB |
Количество установок | 249 |
Текущая Версия | 0.2 |
Последнее Обновление | 2022-03-27 |
Дата публикации | 2021-10-18 |
Рейтинг | 5.00/5 Всего 4 оценок |
Разработчик | arismelachroinos |
Электронная почта | [email protected] |
Тип оплаты | free |
URL страницы политики конфиденциальности | https://www.freeprivacypolicy.com/live/2c558424-4917-4625-89ff-5f1d72958783 |
Поддерживаемые языки | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 3, "name": "Ad Mute for spotify.com", "version": "0.2", "description": "Automatically mutes advertisements between songs at spotify.com", "background": { "service_worker": "background.js" }, "permissions": [], "content_scripts": [ { "matches": [ "https:\/\/*.spotify.com\/*" ], "js": [ "jquery.js", "content.js" ] } ], "icons": { "128": "icon.png" } } |