Youtube™ Shortcuts
Focus on the Youtube player with a the press of a button
什么是Youtube™ Shortcuts?
Youtube™ Shortcuts是由Daniel Pham开发的Chrome扩展程序,该扩展的主要功能是“Focus on the Youtube player with a the press of a button”。
扩展截图
下载Youtube™ Shortcuts扩展crx文件
下载Youtube™ Shortcuts扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。
扩展使用说明
A collection of keyboard shortcuts for YouTube to make navigation faster. Show shortcut - Shift + / Default Shortcuts: Focus on the player - "." (dot/period) Unfocus the current element - "Esc" Go to subscription box - "H" Go to user profile - "U" Navigate video list - "J" & "K" Navigate tab strip - "[ & ]" Follow link to new tab - "Shift + Enter" Like the video - "A" Dislike the video - "Z" Subscribe - "S" Add to playlist - "P" Expand video description - "O" Source Code: https://github.com/danhp/youtube-shortcuts
扩展基本信息
名称 | Youtube™ Shortcuts |
ID | fnapinimcdpmgkedhjbfckmpjppnbhba |
官方URL | https://chrome.google.com/webstore/detail/youtube-shortcuts/fnapinimcdpmgkedhjbfckmpjppnbhba |
简介 | Focus on the Youtube player with a the press of a button |
文件大小 | 68.71 KB |
安装次数 | 548 |
当前版本 | 1.7.2 |
更新时间 | 2019-11-19 |
上架时间 | 2019-11-19 |
评分 | 2.85/5 共20次评分 |
开发者 | Daniel Pham |
电子邮箱 | [email protected] |
付费类型 | free |
扩展官网 | https://github.com/danhp/youtube-shortcuts |
支持的语言 | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "Youtube\u2122 Shortcuts", "version": "1.7.2", "description": "Focus on the Youtube player with a the press of a button", "homepage_url": "https:\/\/phamdaniel.github.io", "options_page": "options.html", "icons": { "16": "imgs\/16.png", "48": "imgs\/48.png", "128": "imgs\/128.png" }, "permissions": [ "storage" ], "background": { "scripts": [ "background.js" ] }, "content_scripts": [ { "matches": [ "*:\/\/www.youtube.com\/*" ], "run_at": "document_end", "css": [ "lib\/facebox.css", "popup.css" ], "js": [ "lib\/jquery-3.0.0.min.js", "lib\/keymaster.min.js", "lib\/facebox.js", "injected.js" ] } ], "web_accessible_resources": [ "popup.html" ] } |