Pause All Videos

Pauses all videos in all tabs

Co to jest Pause All Videos?

Pause All Videos to rozszerzenie Chrome opracowane przez Christopher Ptak, a jego główną funkcją jest „Pauses all videos in all tabs”.

Zrzuty ekranu rozszerzenia

screenshot
screenshot

Pobierz plik CRX rozszerzenia Pause All Videos

Pobierz pliki rozszerzeń Pause All Videos w formacie crx, zainstaluj ręcznie rozszerzenia Chrome w przeglądarce lub udostępnij pliki crx znajomym, aby łatwo zainstalować rozszerzenia Chrome.

Instrukcja Użytkowania Rozszerzenia

                        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.                    

Podstawowe informacje o rozszerzeniu

Nazwa Pause All Videos Pause All Videos
ID mmnnojmlbmhajhklfknapikeonpjcfpf
Oficjalny URL https://chromewebstore.google.com/detail/pause-all-videos/mmnnojmlbmhajhklfknapikeonpjcfpf
Opis Pauses all videos in all tabs
Rozmiar pliku 8.06 KB
Liczba instalacji 284
Aktualna Wersja 0.2
Ostatnia Aktualizacja 2023-08-14
Data Publikacji 2022-11-28
Ocena 5.00/5 Łącznie 5 Oceny
Deweloper Christopher Ptak
E-mail [email protected]
Typ Płatności free
Strona Rozszerzenia https://github.com/ChristopherPtak/PauseAllVideos
Adres URL Strony Pomocy https://github.com/ChristopherPtak/PauseAllVideos/issues
Obsługiwane Języki 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"
    }
}