Youtube Navigation Shortcuts
This extension lets you use arrow/WASD keys to navigate through youtube search list.
什么是Youtube Navigation Shortcuts?
Youtube Navigation Shortcuts是由pokhrelashok2开发的Chrome扩展程序,该扩展的主要功能是“This extension lets you use arrow/WASD keys to navigate through youtube search list.”。
扩展截图
下载Youtube Navigation Shortcuts扩展crx文件
下载Youtube Navigation Shortcuts扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。
扩展使用说明
Youtube doesn't support navigation using arrow keys or WASD by default. This extension enables navigational shortcuts for youtube. Using this extension you can change vidoes just by using ctrl + arrow keys or by using WASD.
You cannot just use arrow keys because youtube has its own set of shortcuts to seek playback and increase/decrease volume using the arrow keys. This extension lets you use CTRL (windows) / CMD (mac) + the Arrow keys to navigate through the videos and press Enter to select and view a video.
WASD shortcuts are disabled by default, but you can enable them from the settings. 扩展基本信息
| 名称 | |
| ID | jfecpfnhkgikbhhdeecbmghfonmfnged |
| 官方URL | https://chromewebstore.google.com/detail/youtube-navigation-shortc/jfecpfnhkgikbhhdeecbmghfonmfnged |
| 简介 | This extension lets you use arrow/WASD keys to navigate through youtube search list. |
| 文件大小 | 14.94 KB |
| 安装次数 | 16 |
| 当前版本 | 1.3 |
| 更新时间 | 2022-09-14 |
| 上架时间 | 2022-09-13 |
| 评分 | 4.75/5 共4次评分 |
| 开发者 | pokhrelashok2 |
| 电子邮箱 | [email protected] |
| 付费类型 | free |
| 隐私政策页面URL | https://www.freeprivacypolicy.com/live/8e8dc6bc-d803-4edf-bdd5-5fff5c7c795a |
| 支持的语言 | en-US |
| manifest.json | |
{
"update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
"name": "Youtube Navigation Shortcuts",
"description": "This extension lets you use arrow\/WASD keys to navigate through youtube search list.",
"version": "1.3",
"manifest_version": 3,
"content_scripts": [
{
"matches": [
"https:\/\/www.youtube.com\/*"
],
"js": [
"listener.js"
]
}
],
"icons": {
"500": "icon.png"
},
"author": "Ashok Pahadi",
"permissions": [
"storage"
],
"action": {
"default_popup": "popup.html",
"default_title": "Press Ctrl(Win)\/Command(Mac)+Arrow Keys or WASD to navigate through videos"
}
} | |