YouStopper for YouTube™
Prevents YouTube™ videos autoplay
Apa itu YouStopper for YouTube™?
YouStopper for YouTube™ adalah ekstensi Chrome yang dikembangkan oleh Unknown, dan fitur utamanya adalah "Prevents YouTube™ videos autoplay".
Screenshot Ekstensi
Unduh Berkas CRX Ekstensi YouStopper for YouTube™
Unduh file ekstensi YouStopper for YouTube™ 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
Prevents YouTube™ videos from starting to play automatically when you open them. Doesn't affect ads so it's better to use together with an Ad-Blocking extension like uBlock Origin. Doesn't stop autoplaying in playlists. Source available at https://github.com/youstopper-dev/youstopper
Informasi Dasar Ekstensi
Nama | YouStopper for YouTube™ |
ID | hmfocflebeolgkehnimcchankdjljepb |
URL Resmi | https://chromewebstore.google.com/detail/youstopper-for-youtube/hmfocflebeolgkehnimcchankdjljepb |
Deskripsi | Prevents YouTube™ videos autoplay |
Ukuran File | 51.95 KB |
Jumlah Instalasi | 1,482 |
Versi Saat Ini | 0.2 |
Terakhir Diperbarui | 2018-02-18 |
Tanggal Publikasi | 2018-02-18 |
Penilaian | 3.56/5 Total 41 Penilaian |
Pengembang | Unknown |
Tipe Pembayaran | free |
Bahasa yang Didukung | en,ru |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "__MSG_extension_name__", "short_name": "YouStopper", "description": "__MSG_extension_description__", "version": "0.2", "default_locale": "en", "icons": { "32": "icons\/youstop_icon_32.png", "48": "icons\/youstop_icon_48.png", "64": "icons\/youstop_icon_64.png", "128": "icons\/youstop_icon_128.png", "512": "icons\/youstop_icon_512.png" }, "background": { "scripts": [ "background.js" ] }, "content_scripts": [ { "matches": [ "*:\/\/www.youtube.com\/*" ], "js": [ "content.js" ], "run_at": "document_start" } ], "web_accessible_resources": [ "page.js" ], "browser_action": { "default_icon": { "32": "icons\/youstop_icon_32.png", "64": "icons\/youstop_icon_64.png" }, "default_title": "__MSG_ba_click2disable__" }, "permissions": [ "storage" ], "minimum_chrome_version": "50" } |