YouTube Arrow Keys Fix
Fixes YouTube's inconsistent player controls. Right and left always navigate. Up and down always volume control.
什么是YouTube Arrow Keys Fix?
YouTube Arrow Keys Fix是由jp开发的Chrome扩展程序,该扩展的主要功能是“Fixes YouTube's inconsistent player controls. Right and left always navigate. Up and down always volume control.”。
扩展截图
下载YouTube Arrow Keys Fix扩展crx文件
下载YouTube Arrow Keys Fix扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。
扩展使用说明
This extension ensures that the left and right arrow keys always navigate the video timeline, while the up and down arrow keys always control the volume, regardless of the focus on the player.
扩展基本信息
名称 | YouTube Arrow Keys Fix |
ID | hbnlngeljeofecndhmebgpgpccfnkgjb |
官方URL | https://chromewebstore.google.com/detail/youtube-arrow-keys-fix/hbnlngeljeofecndhmebgpgpccfnkgjb |
简介 | Fixes YouTube's inconsistent player controls. Right and left always navigate. Up and down always volume control. |
文件大小 | 45.87 KB |
安装次数 | 258 |
当前版本 | 1.0 |
更新时间 | 2023-04-19 |
上架时间 | 2023-04-18 |
评分 | 5.00/5 共5次评分 |
开发者 | jp |
电子邮箱 | [email protected] |
付费类型 | free |
扩展官网 | https://github.com/JParramore/youtube-arrow-keys-fix |
帮助页面URL | https://github.com/JParramore/youtube-arrow-keys-fix |
支持的语言 | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 3, "name": "YouTube Arrow Keys Fix", "version": "1.0", "description": "Fixes YouTube's inconsistent player controls. Right and left always navigate. Up and down always volume control.", "icons": { "16": "icons\/icon16.png", "32": "icons\/icon32.png", "48": "icons\/icon48.png", "128": "icons\/icon128.png" }, "content_scripts": [ { "matches": [ "*:\/\/*.youtube.com\/*" ], "js": [ "content.js" ] } ] } |