No AutoPlay

Pauses any HTML5 videos that would autoplay. Click to play the video when you want to watch it, not when you open the browser tab.

Co to jest No AutoPlay?

No AutoPlay to rozszerzenie Chrome opracowane przez jccovey, a jego główną funkcją jest „Pauses any HTML5 videos that would autoplay. Click to play the video when you want to watch it, not when you open the browser tab.”.

Pobierz plik CRX rozszerzenia No AutoPlay

Pobierz pliki rozszerzeń No AutoPlay 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

                        Limited to YouTube videos. 

The extension will not prevent HTML5 videos hosted on other websites auto-playing, but for YouTube videos, the extension will pause the video when the page loads.                    

Podstawowe informacje o rozszerzeniu

Nazwa No AutoPlay No AutoPlay
ID kpcjcnadodbmcfhkknekeofhidnkjeii
Oficjalny URL https://chromewebstore.google.com/detail/no-autoplay/kpcjcnadodbmcfhkknekeofhidnkjeii
Opis Pauses any HTML5 videos that would autoplay. Click to play the video when you want to watch it, not when you open the browser tab.
Rozmiar pliku 4.07 KB
Liczba instalacji 116
Aktualna Wersja 1.0.0
Ostatnia Aktualizacja 2017-12-06
Data Publikacji 2017-12-06
Ocena 3.00/5 Łącznie 7 Oceny
Deweloper jccovey
Typ Płatności free
Obsługiwane Języki en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "No AutoPlay",
    "version": "1.0.0",
    "description": "Pauses any HTML5 videos that would autoplay. Click to play the video when you want to watch it, not when you open the browser tab.",
    "permissions": [],
    "content_scripts": [
        {
            "matches": [
                "http:\/\/*.youtube.com\/*",
                "https:\/\/*.youtube.com\/*",
                "http:\/\/*.youtu.be\/*",
                "https:\/\/*.youtu.be\/*"
            ],
            "js": [
                "contentscript.js"
            ],
            "run_at": "document_idle",
            "all_frames": false
        }
    ],
    "manifest_version": 2
}