YouTube Autoplay Disabler
Extension to disable YouTube's autoplay 'feature'. This implementation is pragmatic, so no fancy code: we just get the job done.
Apa itu YouTube Autoplay Disabler?
YouTube Autoplay Disabler adalah ekstensi Chrome yang dikembangkan oleh Luciano Ratamero, dan fitur utamanya adalah "Extension to disable YouTube's autoplay 'feature'. This implementation is pragmatic, so no fancy code: we just get the job done.".
Screenshot Ekstensi
Unduh Berkas CRX Ekstensi YouTube Autoplay Disabler
Unduh file ekstensi YouTube Autoplay Disabler 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
Free and open-sourced alternative for disabling YouTube's autoplay "feature" Checks if YouTube autoplay is on and, if it is, disables it. https://github.com/lucianoratamero/youtube-autoplay-disabler
Informasi Dasar Ekstensi
Nama | YouTube Autoplay Disabler |
ID | mlebignjhimfeggkjhhgbhomibiplmem |
URL Resmi | https://chromewebstore.google.com/detail/youtube-autoplay-disabler/mlebignjhimfeggkjhhgbhomibiplmem |
Deskripsi | Extension to disable YouTube's autoplay 'feature'. This implementation is pragmatic, so no fancy code: we just get the job done. |
Ukuran File | 366 KB |
Jumlah Instalasi | 161 |
Versi Saat Ini | 0.2.1 |
Terakhir Diperbarui | 2021-04-29 |
Tanggal Publikasi | 2018-06-15 |
Penilaian | 3.12/5 Total 17 Penilaian |
Pengembang | Luciano Ratamero |
[email protected] | |
Tipe Pembayaran | free |
Bahasa yang Didukung | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "YouTube Autoplay Disabler", "description": "Extension to disable YouTube's autoplay 'feature'. This implementation is pragmatic, so no fancy code: we just get the job done.", "version": "0.2.1", "icons": { "128": "icon-small.png" }, "content_scripts": [ { "matches": [ "*:\/\/*.youtube.com\/*" ], "js": [ "content.js" ], "run_at": "document_idle" } ], "browser_action": { "default_icon": "icon-small.png" } } |