CrunchyUtils

Adds a none option to the subtitle picker, more playback speeds, faster UI autohide, custom fast-forward and rewind values, and frame seeking!

Bu betiği kurabilmeniz için Tampermonkey, Greasemonkey ya da Violentmonkey gibi bir kullanıcı betiği eklentisini kurmanız gerekmektedir.

Bu betiği yüklemek için Tampermonkey gibi bir uzantı yüklemeniz gerekir.

Bu betiği kurabilmeniz için Tampermonkey ya da Violentmonkey gibi bir kullanıcı betiği eklentisini kurmanız gerekmektedir.

Bu betiği kurabilmeniz için Tampermonkey ya da Userscripts gibi bir kullanıcı betiği eklentisini kurmanız gerekmektedir.

Bu betiği indirebilmeniz için ayrıca Tampermonkey gibi bir eklenti kurmanız gerekmektedir.

Bu komut dosyasını yüklemek için bir kullanıcı komut dosyası yöneticisi uzantısı yüklemeniz gerekecek.

(Zaten bir kullanıcı komut dosyası yöneticim var, kurmama izin verin!)

Bu stili yüklemek için Stylus gibi bir uzantı yüklemeniz gerekir.

Bu stili yüklemek için Stylus gibi bir uzantı kurmanız gerekir.

Bu stili yükleyebilmek için Stylus gibi bir uzantı yüklemeniz gerekir.

Bu stili yüklemek için bir kullanıcı stili yöneticisi uzantısı yüklemeniz gerekir.

Bu stili yüklemek için bir kullanıcı stili yöneticisi uzantısı kurmanız gerekir.

Bu stili yükleyebilmek için bir kullanıcı stili yöneticisi uzantısı yüklemeniz gerekir.

(Zateb bir user-style yöneticim var, yükleyeyim!)

Yazar
DimitrovN
Günlük kurulumlar
0
Toplam kurulumlar
3
Değerlendirmeler
0 0 0
Versiyon
1.1
Oluşturulma
21.03.2026
Güncellenme
27.03.2026
Boyut
18,6 KB
Lisans
GPL-3.0-or-later
Geçerli

CrunchyUtils is a quality-of-life toolkit for Crunchyroll that bundles several small but impactful player improvements into one script. Each feature can be individually toggled on or off at the top of the script.

CrunchyUtils works best on the main profile of your account.


Features

Subtitle None option - Adds a "None" entry to the subtitle menu so you can watch without any subtitles, even when Crunchyroll doesn't offer an off option. Clicking an already-active subtitle language also deselects it. Your preference is persisted to your (main) profile.

Extended playback speeds - Adds 1.25×, 1.5×, 1.75×, 2×, 2.5×, and 3× to the speed menu. Your chosen speed is remembered across pause/play and episode changes.

Faster UI autohide - Reduces the player controls autohide delay from 6 seconds down to 0.5 seconds (configurable) so the UI gets out of the way faster.

Custom seek values - The forward/rewind buttons and arrow keys seek by 5 seconds instead of Crunchyroll's default. Fully configurable.

Frame stepping - Pause the video and use , and . to step backward and forward one frame at a time. Useful for catching details or grabbing screenshots.


Configuration

All toggles and values are at the top of the script:

const FEATURE_SUBTITLE_NONE   = true;
const FEATURE_PLAYBACK_SPEED  = true;
const FEATURE_AUTOHIDE        = true;
const FEATURE_SEEK_BUTTONS    = true;
const FEATURE_ARROW_KEY_SEEK  = true;
const FEATURE_FRAME_STEP      = true;

const HIDE_DELAY_MS  = 500;
const SEEK_SECONDS   = 5;
const FRAME_SECONDS  = 1 / 23.976;
const EXTRA_SPEEDS   = [3, 2.5, 2, 1.75, 1.5, 1.25];