YouTube Autoplay Disabler

Extension to disable YouTube's autoplay 'feature'. This implementation is pragmatic, so no fancy code: we just get the job done.

Что такое YouTube Autoplay Disabler?

YouTube Autoplay Disabler - это расширение Chrome, разработанное Luciano Ratamero, и его основная функция - "Extension to disable YouTube's autoplay 'feature'. This implementation is pragmatic, so no fancy code: we just get the job done.".

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

screenshot

Скачать файл CRX расширения YouTube Autoplay Disabler

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

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

                        Free and open-sourced alternative for disabling YouTube's autoplay "feature"

Checks if YouTube autoplay is on and, if it is, disables it.

https://github.com/lucianoratamero/youtube-autoplay-disabler                    

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

Название YouTube Autoplay Disabler YouTube Autoplay Disabler
ID mlebignjhimfeggkjhhgbhomibiplmem
Официальный URL https://chromewebstore.google.com/detail/youtube-autoplay-disabler/mlebignjhimfeggkjhhgbhomibiplmem
Описание Extension to disable YouTube's autoplay 'feature'. This implementation is pragmatic, so no fancy code: we just get the job done.
Размер файла 366 KB
Количество установок 161
Текущая Версия 0.2.1
Последнее Обновление 2021-04-29
Дата публикации 2018-06-15
Рейтинг 3.12/5 Всего 17 оценок
Разработчик Luciano Ratamero
Электронная почта [email protected]
Тип оплаты free
Поддерживаемые языки en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "YouTube Autoplay Disabler",
    "description": "Extension to disable YouTube's autoplay 'feature'. This implementation is pragmatic, so no fancy code: we just get the job done.",
    "version": "0.2.1",
    "icons": {
        "128": "icon-small.png"
    },
    "content_scripts": [
        {
            "matches": [
                "*:\/\/*.youtube.com\/*"
            ],
            "js": [
                "content.js"
            ],
            "run_at": "document_idle"
        }
    ],
    "browser_action": {
        "default_icon": "icon-small.png"
    }
}