No Interruptions

Mute Tab during Spotify Ads

Что такое No Interruptions?

No Interruptions - это расширение Chrome, разработанное Mohit Hotwani, и его основная функция - "Mute Tab during Spotify Ads".

Снимки экрана расширения

screenshot

Скачать файл CRX расширения No Interruptions

Скачайте файлы расширений No Interruptions в формате crx, установите расширения Chrome вручную в браузере или поделитесь файлами crx с друзьями, чтобы легко установить расширения Chrome.

Инструкции по использованию расширения

                        No need to get distracted from work while listening to music on Spotify, No Interruptions extension will mute ADs for you and unmute when AD ends.                    

Основная информация о расширении

Название No Interruptions No Interruptions
ID hpepnbfnjpagjknkhhpohialemblblog
Официальный URL https://chromewebstore.google.com/detail/no-interruptions/hpepnbfnjpagjknkhhpohialemblblog
Описание Mute Tab during Spotify Ads
Размер файла 25.69 KB
Количество установок 51
Текущая Версия 0.0.1
Последнее Обновление 2022-11-07
Дата публикации 2022-11-06
Рейтинг 5.00/5 Всего 2 оценок
Разработчик Mohit Hotwani
Электронная почта [email protected]
Тип оплаты free
Поддерживаемые языки en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "No Interruptions",
    "description": "Mute Tab during Spotify Ads",
    "version": "0.0.1",
    "manifest_version": 3,
    "author": "Mohit",
    "action": {
        "default_icon": "icon.png"
    },
    "background": {
        "service_worker": "background.js"
    },
    "content_scripts": [
        {
            "matches": [
                "https:\/\/open.spotify.com\/*"
            ],
            "js": [
                "noInterruptions.js"
            ]
        }
    ]
}