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.

Apa itu No AutoPlay?

No AutoPlay adalah ekstensi Chrome yang dikembangkan oleh jccovey, dan fitur utamanya adalah "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.".

Unduh Berkas CRX Ekstensi No AutoPlay

Unduh file ekstensi No AutoPlay dalam format crx, pasang ekstensi Chrome secara manual di peramban, atau bagikan file crx dengan teman untuk menginstal ekstensi Chrome dengan mudah.

Petunjuk Penggunaan Ekstensi

                        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.                    

Informasi Dasar Ekstensi

Nama No AutoPlay No AutoPlay
ID kpcjcnadodbmcfhkknekeofhidnkjeii
URL Resmi https://chromewebstore.google.com/detail/no-autoplay/kpcjcnadodbmcfhkknekeofhidnkjeii
Deskripsi 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.
Ukuran File 4.07 KB
Jumlah Instalasi 116
Versi Saat Ini 1.0.0
Terakhir Diperbarui 2017-12-06
Tanggal Publikasi 2017-12-06
Penilaian 3.00/5 Total 7 Penilaian
Pengembang jccovey
Tipe Pembayaran free
Bahasa yang Didukung 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
}