Twitch VOD Unspoiler
Removes spoilers from Twitch.tv VODs.
Apa itu Twitch VOD Unspoiler?
Twitch VOD Unspoiler adalah ekstensi Chrome yang dikembangkan oleh Kyle Coburn, dan fitur utamanya adalah "Removes spoilers from Twitch.tv VODs.".
Screenshot Ekstensi
Unduh Berkas CRX Ekstensi Twitch VOD Unspoiler
Unduh file ekstensi Twitch VOD Unspoiler 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
・Hides references to VOD durations on videos/playback pages, and replaces the scrubber with relative time controls (e.g. -30 seconds/+15 minutes) ・Click the extension's icon to toggle spoilers on a per-channel basis This extension collects no data, and respects your privacy and battery life. Open source at: https://github.com/ky-is/twitch-vod-unspoiler (Note you can check the video's current time by clicking the playback Settings icon.)
Informasi Dasar Ekstensi
Nama | Twitch VOD Unspoiler |
ID | kjeacdeffkhbcaoobelkgnnlfpaifaoc |
URL Resmi | https://chromewebstore.google.com/detail/twitch-vod-unspoiler/kjeacdeffkhbcaoobelkgnnlfpaifaoc |
Deskripsi | Removes spoilers from Twitch.tv VODs. |
Ukuran File | 8.68 KB |
Jumlah Instalasi | 784 |
Versi Saat Ini | 2.5.6 |
Terakhir Diperbarui | 2023-11-06 |
Tanggal Publikasi | 2020-06-06 |
Penilaian | 4.94/5 Total 17 Penilaian |
Pengembang | Kyle Coburn |
[email protected] | |
Tipe Pembayaran | free |
Situs Ekstensi | https://github.com/ky-is/twitch-vod-unspoiler |
URL Halaman Bantuan | https://github.com/ky-is/twitch-vod-unspoiler/issues |
Bahasa yang Didukung | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "Twitch VOD Unspoiler", "version": "2.5.6", "description": "Removes spoilers from Twitch.tv VODs.", "browser_action": { "default_icon": "images\/icon-off.png" }, "icons": { "128": "images\/icon-on.png" }, "background": { "persistent": false, "scripts": [ "generated\/background.js" ] }, "content_scripts": [ { "matches": [ "*:\/\/www.twitch.tv\/*", "*:\/\/twitch.tv\/*" ], "css": [ "generated\/inject.css" ], "js": [ "generated\/inject.js" ], "run_at": "document_idle" } ], "permissions": [] } |