Crunchyroll Intro Skipper
Allows intros to be skipped through a skip button on Crunchyroll
Apa itu Crunchyroll Intro Skipper?
Crunchyroll Intro Skipper adalah ekstensi Chrome yang dikembangkan oleh Ian Hsiao, dan fitur utamanya adalah "Allows intros to be skipped through a skip button on Crunchyroll".
Screenshot Ekstensi
Unduh Berkas CRX Ekstensi Crunchyroll Intro Skipper
Unduh file ekstensi Crunchyroll Intro Skipper 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
Skips anime intros with a single button. Finds when the intro ends by skipping to the timestamp of the first advertisement. *Update* it seems like crunchyroll has changed the location of their advertisements from right after the intro to somewhere in the middle so it's likely the extension will skip to somewhere random.
Informasi Dasar Ekstensi
Nama | Crunchyroll Intro Skipper |
ID | hbglapgegjickodindimfgfmjmhhdlii |
URL Resmi | https://chromewebstore.google.com/detail/crunchyroll-intro-skipper/hbglapgegjickodindimfgfmjmhhdlii |
Deskripsi | Allows intros to be skipped through a skip button on Crunchyroll |
Ukuran File | 29.51 KB |
Jumlah Instalasi | 1,091 |
Versi Saat Ini | 1.0 |
Terakhir Diperbarui | 2020-08-05 |
Tanggal Publikasi | 2020-06-17 |
Penilaian | 2.81/5 Total 16 Penilaian |
Pengembang | Ian Hsiao |
[email protected] | |
Tipe Pembayaran | free |
URL Halaman Bantuan | https://github.com/ianjjhsiao/skipintro |
Bahasa yang Didukung | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "content_scripts": [ { "all_frames": true, "js": [ "content_script.js" ], "matches": [ "https:\/\/static.crunchyroll.com\/vilos-v2\/web\/vilos\/player.html*" ] } ], "description": "Allows intros to be skipped through a skip button on Crunchyroll", "icons": { "16": "icon.png", "128": "Big_icon.png" }, "background": { "scripts": [ "background_script.js" ], "persistent": false }, "manifest_version": 2, "name": "Crunchyroll Intro Skipper", "permissions": [ "https:\/\/www.crunchyroll.com\/*" ], "version": "1.0" } |