🎉 欢迎访问GreasyFork.Org 镜像站!本镜像站由公众号【爱吃馍】搭建,用于分享脚本。联系邮箱📮

Greasy fork 爱吃馍镜像

Greasy Fork is available in English.

📂 缓存分发状态(共享加速已生效)
🕒 页面同步时间:2026/01/06 15:44:43
🔄 下次更新时间:2026/01/06 16:44:43
手动刷新缓存

VVVVIDepc - Enhanced Player Controls for vvvvid.it

Add hotkeys support and drastically improve playback UI

2019-02-06 يوللانغان نەشرى. ئەڭ يېڭى نەشرىنى كۆرۈش.

You will need to install an extension such as Tampermonkey, Greasemonkey or Violentmonkey to install this script.

You will need to install an extension such as Tampermonkey to install this script.

You will need to install an extension such as Tampermonkey or Violentmonkey to install this script.

You will need to install an extension such as Tampermonkey or Userscripts to install this script.

You will need to install an extension such as Tampermonkey to install this script.

You will need to install a user script manager extension to install this script.

(I already have a user script manager, let me install it!)

🚀 安装遇到问题?关注公众号获取帮助

公众号二维码

扫码关注【爱吃馍】

回复【脚本】获取最新教程和防失联地址

You will need to install an extension such as Stylus to install this style.

You will need to install an extension such as Stylus to install this style.

You will need to install an extension such as Stylus to install this style.

You will need to install a user style manager extension to install this style.

You will need to install a user style manager extension to install this style.

You will need to install a user style manager extension to install this style.

(I already have a user style manager, let me install it!)

🚀 安装遇到问题?关注公众号获取帮助

公众号二维码

扫码关注【爱吃馍】

回复【脚本】获取最新教程和防失联地址

ئاپتورى
vuolter
باھا نومۇرى
0 0 0
نەشرى
2.0.2
قۇرۇلغان ۋاقتى
2019-02-05
يېڭىلانغان ۋاقتى
2019-02-06
Size
6.7 KB
ئىجازەتنامىسى
ISC
قوللايدىغىنى

VVVVIDepc

Enhanced Player Controls for vvvvid.it

If you're looking for something more minimal or you're still in love with your keyboard, this userscript is for you too!

No ads skippers here, but... also no compatibility issues with them. Peace.

Features

  • [x] Add hotkeys support
  • [x] Customizable hotkeys
  • [x] Reduce info on screen while playing
  • [x] Clean playback UI
  • [x] Fix volume controls

Available hotkeys:

  • Space to play/pause video playback.
  • ArrowLeft to rewind video (keep pressed to gradually increase speed).
  • ArrowRight to fast-forward video (keep pressed to gradually increase speed).
  • b to play before (previous) video in playlist.
  • n to play next video in playlist.
  • ArrowUp to increase audio volume.
  • ArrowDown to reduce audio volume.
  • m to mute/unmute audio volume.
  • f to fullscreen video.
  • t to show/hide video title.
  • p to show/hide playlist bar.
  • Enter to rate video.
  • a to save video to watch later list.

Press any other key to show the playback controls.

Script Settings

Values of name of keys to use as hotkeys (Strings):

var PAUSE_KEY = "Space";
var REW_KEY = "ArrowLeft";
var FF_KEY = "ArrowRight";
var VOLUP_KEY = "ArrowUp";
var VOLDOWN_KEY = "ArrowDown";
var WATCHLATER_KEY = "a";
var PREV_KEY = "b";
var NEXT_KEY = "n";
var MUTE_KEY = "m";
var RATE_KEY = "Enter";
var PLAYLIST_KEY = "p";
var FULLSCREEN_KEY = "f";
var TITLE_KEY = "t";

Note: Hotkey value is case-sensitive. Application, system and function key names are not supported (e.g. Escape, F11, Tab, Alt, etc.).

Show/hide video title within player controls (Boolean, default to true):

var SHOW_TITLE = true;

Show/hide video actions within player controls (Boolean, default to false):

var SHOW_ACTIONS = false;

Value of gain to add/subtract to current volume when key is pressed (Number, range 0 to 1):

var VOLUME_INCREMENT = 0.1;

Min/max seconds of time to add/subtract to the current playback position when key is pressed (Numbers, greater than 0):

var MIN_POSITION_INCREMENT = 10;
var MAX_POSITION_INCREMENT = 120;

Value to multiply with seconds of time to add/subtract when key is pressed (Number, greater than 1):

var POSITION_INCREMENT_MULTIPLIER = 1.03;

© 2019 Walter Purcaro