Pause All Videos
Pauses all videos in all tabs
Что такое Pause All Videos?
Pause All Videos - это расширение Chrome, разработанное Christopher Ptak, и его основная функция - "Pauses all videos in all tabs".
Снимки экрана расширения
Скачать файл CRX расширения Pause All Videos
Скачайте файлы расширений Pause All Videos в формате crx, установите расширения Chrome вручную в браузере или поделитесь файлами crx с друзьями, чтобы легко установить расширения Chrome.
Инструкции по использованию расширения
This tool is intended to help people who have lots (maybe even hundreds!) of tabs open. When they restore all those tabs at once, their open videos might start playing! Instead of having to search through all the open windows and pause the videos one by one, this extension gives a simple button that pauses every video at once.
Основная информация о расширении
Название | Pause All Videos |
ID | mmnnojmlbmhajhklfknapikeonpjcfpf |
Официальный URL | https://chromewebstore.google.com/detail/pause-all-videos/mmnnojmlbmhajhklfknapikeonpjcfpf |
Описание | Pauses all videos in all tabs |
Размер файла | 8.06 KB |
Количество установок | 284 |
Текущая Версия | 0.2 |
Последнее Обновление | 2023-08-14 |
Дата публикации | 2022-11-28 |
Рейтинг | 5.00/5 Всего 5 оценок |
Разработчик | Christopher Ptak |
Электронная почта | [email protected] |
Тип оплаты | free |
Официальный сайт расширения | https://github.com/ChristopherPtak/PauseAllVideos |
URL страницы помощи | https://github.com/ChristopherPtak/PauseAllVideos/issues |
Поддерживаемые языки | en-US |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 3, "name": "Pause All Videos", "description": "Pauses all videos in all tabs", "author": "Christopher Ptak", "version": "0.2", "action": [], "permissions": [ "scripting", "tabs" ], "host_permissions": [ "https:\/\/*\/", "http:\/\/*\/" ], "background": { "service_worker": "background.js" }, "icons": { "16": "icon16.png", "32": "icon32.png", "128": "icon128.png" } } |