Auto Pause Video

Automatically pauses html 5 videos after a page loads

Что такое Auto Pause Video?

Auto Pause Video - это расширение Chrome, разработанное kfegen, и его основная функция - "Automatically pauses html 5 videos after a page loads".

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

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

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

                        A simple extension that pauses videos when the page is loaded.                    

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

Название Auto Pause Video Auto Pause Video
ID nohcggfcgcklgfcebniodgpobblnbeff
Официальный URL https://chrome.google.com/webstore/detail/auto-pause-video/nohcggfcgcklgfcebniodgpobblnbeff
Описание Automatically pauses html 5 videos after a page loads
Размер файла 3.19 KB
Количество установок 91
Текущая Версия 1.0
Последнее Обновление 2014-06-05
Дата публикации 2014-06-05
Рейтинг 3.33/5 Всего 6 оценок
Разработчик kfegen
Тип оплаты free
Поддерживаемые языки en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Auto Pause Video",
    "description": "Automatically pauses html 5 videos after a page loads",
    "version": "1.0",
    "content_scripts": [
        {
            "run_at": "document_idle",
            "all_frames": true,
            "js": [
                "content.js"
            ],
            "matches": [
                "http:\/\/*\/*",
                "https:\/\/*\/*"
            ]
        }
    ]
}