AutoPlayOff

This extension will find all of the videos on the page that auto play and stop them from doing so

Что такое AutoPlayOff?

AutoPlayOff - это расширение Chrome, разработанное aothomas, и его основная функция - "This extension will find all of the videos on the page that auto play and stop them from doing so".

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

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

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

                        A Chrome extension that allows you to mute or remove videos on websites. This is supposed to target those annoying, intrusive video advertisements. You can use this extension if you still want to support the website by leaving ads, but making sure videos don't popup                    

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

Название AutoPlayOff AutoPlayOff
ID kkdhilabpimmejlcmfjilfgfkdghkndg
Официальный URL https://chrome.google.com/webstore/detail/autoplayoff/kkdhilabpimmejlcmfjilfgfkdghkndg
Описание This extension will find all of the videos on the page that auto play and stop them from doing so
Размер файла 669 KB
Количество установок 16
Текущая Версия 1.0
Последнее Обновление 2018-06-24
Дата публикации 2018-06-24
Разработчик aothomas
Тип оплаты free
Поддерживаемые языки en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "AutoPlayOff",
    "description": "This extension will find all of the videos on the page that auto play and stop them from doing so",
    "version": "1.0",
    "icons": {
        "16": "DisabledSpeakerIcon16.png",
        "48": "DisabledSpeakerIcon48.png",
        "128": "DisabledSpeakerIcon128.png"
    },
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "js": [
                "jquery-3.3.1.slim.min.js",
                "ContentScript.js"
            ]
        }
    ],
    "permissions": [
        "activeTab",
        "storage"
    ],
    "options_page": "options.html"
}