YouTube Kbd Nav

YouTube keyboard navigation to the max.

什么是YouTube Kbd Nav?

YouTube Kbd Nav是由philippefanaro开发的Chrome扩展程序,该扩展的主要功能是“YouTube keyboard navigation to the max.”。

扩展截图

screenshot
screenshot
screenshot

下载YouTube Kbd Nav扩展crx文件

下载YouTube Kbd Nav扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。

扩展使用说明

                        An extension to ease your navigation on YouTube. Now you can use your keyboard to do 99% of the things you usually do there.

Please visit the homepage for a full table of shortcuts: https://github.com/FanaroEngineering/youtube_kbd_nav/.

Some of the shortcuts (the ordering is just for reference purposes):

- z: Cycle forwards on the thumbnails
- x: Cycle backwards on the thumbnails
- Enter: Navigate to the selected thumbnail
- q: YouTube Home
- h: YouTube History
- \: Toggle the video player's focus
- v: Like the video
- n: Dislike the video                    

扩展基本信息

名称 YouTube Kbd Nav YouTube Kbd Nav
ID lfhpmfgaahemloddkjioinadcoighoih
官方URL https://chromewebstore.google.com/detail/youtube-kbd-nav/lfhpmfgaahemloddkjioinadcoighoih
简介 YouTube keyboard navigation to the max.
文件大小 74.03 KB
安装次数 25
当前版本 1.0.2
更新时间 2021-01-07
上架时间 2020-09-29
评分 4.50/5 共2次评分
开发者 philippefanaro
电子邮箱 [email protected]
付费类型 free
扩展官网 https://github.com/FanaroEngineering/youtube_kbd_nav/
帮助页面URL https://github.com/FanaroEngineering/youtube_kbd_nav/
支持的语言 en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "YouTube Kbd Nav",
    "author": "Philippe Fanaro",
    "version": "1.0.2",
    "description": "YouTube keyboard navigation to the max.",
    "content_scripts": [
        {
            "matches": [
                "*:\/\/*.youtube.com\/*"
            ],
            "exclude_matches": [
                "*:\/\/*.studio.youtube.com\/*"
            ],
            "js": [
                "content.dart.js"
            ]
        }
    ],
    "permissions": [
        "clipboardWrite"
    ],
    "icons": {
        "128": "favicon.png"
    }
}