YouTube Auto Pause Blocker

Disables the "Video Paused. Continue Watching?" popup on YouTube.

Что такое YouTube Auto Pause Blocker?

YouTube Auto Pause Blocker - это расширение Chrome, разработанное https://browsecraft.com, и его основная функция - "Disables the "Video Paused. Continue Watching?" popup on YouTube.".

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

screenshot

Скачать файл CRX расширения YouTube Auto Pause Blocker

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

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

                        Uses improved methods to prevent the "Video paused. Continue watching?" popup on YouTube. 

This extension will completely block the confirmation box from appearing, even if the tab is not focused/visible. 

Functions on regular YouTube and YouTube music.

Works perfectly in any viewing mode, such as full-screen, miniplayer and theater mode.

If you have issues with the extension please email me or use the contact form on the website.

Made with ❤️ by Browsecraft gang. Stand with Ukraine 💙💛.

DISCLAIMER
Please note "YouTube Auto Pause Blocker" is not made by YouTube™ or affiliated with YouTube™. YouTube™  are trademarks of Google LLC.                    

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

Название YouTube Auto Pause Blocker YouTube Auto Pause Blocker
ID kdmekoohmngfmmmmlflddplohklmmmoc
Официальный URL https://chromewebstore.google.com/detail/youtube-auto-pause-blocke/kdmekoohmngfmmmmlflddplohklmmmoc
Описание Disables the "Video Paused. Continue Watching?" popup on YouTube.
Размер файла 27.42 KB
Количество установок 31,903
Текущая Версия 23.12.11
Последнее Обновление 2023-12-12
Дата публикации 2019-09-28
Рейтинг 3.18/5 Всего 107 оценок
Разработчик https://browsecraft.com
Электронная почта [email protected]
Тип оплаты free
Официальный сайт расширения https://browsecraft.com/
URL страницы помощи https://browsecraft.com/contacts
URL страницы политики конфиденциальности https://browsecraft.com/privacy
Поддерживаемые языки en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "YouTube Auto Pause Blocker",
    "description": "Disables the \"Video Paused. Continue Watching?\" popup on YouTube.",
    "version": "23.12.11",
    "manifest_version": 2,
    "permissions": [
        "webRequest",
        "webRequestBlocking",
        "https:\/\/www.youtube.com\/*",
        "https:\/\/music.youtube.com\/*"
    ],
    "background": {
        "scripts": [
            "background.js"
        ]
    },
    "content_scripts": [
        {
            "matches": [
                "https:\/\/www.youtube.com\/*",
                "https:\/\/music.youtube.com\/*"
            ],
            "js": [
                "injected.js"
            ],
            "all_frames": true
        }
    ],
    "icons": {
        "128": "128.png"
    }
}