Auto Pause Video

Automatically pauses html 5 videos after a page loads

Co to jest Auto Pause Video?

Auto Pause Video to rozszerzenie Chrome opracowane przez kfegen, a jego główną funkcją jest „Automatically pauses html 5 videos after a page loads”.

Pobierz plik CRX rozszerzenia Auto Pause Video

Pobierz pliki rozszerzeń Auto Pause Video 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

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

Podstawowe informacje o rozszerzeniu

Nazwa Auto Pause Video Auto Pause Video
ID nohcggfcgcklgfcebniodgpobblnbeff
Oficjalny URL https://chrome.google.com/webstore/detail/auto-pause-video/nohcggfcgcklgfcebniodgpobblnbeff
Opis Automatically pauses html 5 videos after a page loads
Rozmiar pliku 3.19 KB
Liczba instalacji 91
Aktualna Wersja 1.0
Ostatnia Aktualizacja 2014-06-05
Data Publikacji 2014-06-05
Ocena 3.33/5 Łącznie 6 Oceny
Deweloper kfegen
Typ Płatności free
Obsługiwane Języki 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:\/\/*\/*"
            ]
        }
    ]
}