SmartVid - Netflix, Amazon, YouTube autopause

Automatically pauses videos on YouTube, PrimeVideo, and Netflix when you switch to another tab and resumes when you switch back.

Что такое SmartVid - Netflix, Amazon, YouTube autopause?

SmartVid - Netflix, Amazon, YouTube autopause - это расширение Chrome, разработанное Shubham Bassi, и его основная функция - "Automatically pauses videos on YouTube, PrimeVideo, and Netflix when you switch to another tab and resumes when you switch back.".

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

Скачать файл CRX расширения SmartVid - Netflix, Amazon, YouTube autopause

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

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

                        This extension checks and automatically pauses the videos playing on Netflix, YouTube and PrimeVideo websites when you switch to another tab. When you switch back to any of the paused tabs, the video will resume from where you left off.                    

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

Название SmartVid - Netflix, Amazon, YouTube autopause SmartVid - Netflix, Amazon, YouTube autopause
ID hhgnmllddghdmpmnbdpkcmahegbdclnl
Официальный URL https://chromewebstore.google.com/detail/smartvid-netflix-amazon-y/hhgnmllddghdmpmnbdpkcmahegbdclnl
Описание Automatically pauses videos on YouTube, PrimeVideo, and Netflix when you switch to another tab and resumes when you switch back.
Размер файла 17.61 KB
Количество установок 24
Текущая Версия 2.0.0
Последнее Обновление 2020-09-29
Дата публикации 2020-09-04
Рейтинг 5.00/5 Всего 2 оценок
Разработчик Shubham Bassi
Электронная почта [email protected]
Тип оплаты free
Официальный сайт расширения https://github.com/izedamo/SmartVideo
URL страницы помощи https://github.com/izedamo/SmartVideo/issues
Поддерживаемые языки en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "SmartVid - Netflix, Amazon, YouTube autopause",
    "version": "2.0.0",
    "description": "Automatically pauses videos on YouTube, PrimeVideo, and Netflix when you switch to another tab and resumes when you switch back.",
    "permissions": [
        "tabs",
        "storage"
    ],
    "background": {
        "scripts": [
            "scripts\/background.js"
        ],
        "persistent": false
    },
    "content_scripts": [
        {
            "matches": [
                "https:\/\/*.primevideo.com\/*",
                "https:\/\/*.youtube.com\/*",
                "https:\/\/*.netflix.com\/*"
            ],
            "js": [
                "scripts\/content-script.js"
            ]
        }
    ],
    "icons": {
        "16": "icons\/SmartVideo16.png",
        "32": "icons\/SmartVideo32.png",
        "48": "icons\/SmartVideo48.png",
        "128": "icons\/SmartVideo128.png"
    },
    "manifest_version": 2
}