YouTube Hotkeys
Your YouTube Hotkeys for play, pause, play next video and repeat.
什么是YouTube Hotkeys?
YouTube Hotkeys是由Giovani Silva开发的Chrome扩展程序,该扩展的主要功能是“Your YouTube Hotkeys for play, pause, play next video and repeat.”。
扩展截图
下载YouTube Hotkeys扩展crx文件
下载YouTube Hotkeys扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。
扩展使用说明
This extension adds hotkeys to your youTube page, now you can control the videos you are watching from anywhere, even when you are away from browser! You can also set your video to repeat, check the extension icon to know when your video is in repeating mode or not. Default Keyboard shortcuts: Next Video : Alt+Shift+Period Play/Pause : Alt+Shift+P Previous Video : Alt+Shift+Comma Repeat Video : Alt+Shift+R To configure go to chrome://extensions/configureCommands
扩展基本信息
名称 | |
ID | nikecddgokknoehjljdkhkilicpcacmo |
官方URL | https://chrome.google.com/webstore/detail/youtube-hotkeys/nikecddgokknoehjljdkhkilicpcacmo |
简介 | Your YouTube Hotkeys for play, pause, play next video and repeat. |
文件大小 | 75.94 KB |
安装次数 | 785 |
当前版本 | 1.1 |
更新时间 | 2018-04-06 |
上架时间 | 2018-04-06 |
评分 | 4.53/5 共15次评分 |
开发者 | Giovani Silva |
电子邮箱 | [email protected] |
付费类型 | free |
支持的语言 | en-US |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "YouTube Hotkeys", "description": "Your YouTube Hotkeys for play, pause, play next video and repeat.", "version": "1.1", "incognito": "split", "background": { "persistent": false, "scripts": [ "background.js" ] }, "commands": { "next": { "description": "Next track", "suggested_key": "Alt+Shift+Period" }, "play-pause": { "description": "Play\/Pause", "suggested_key": "Alt+Shift+P" }, "previous": { "description": "Previous track", "suggested_key": "Alt+Shift+Comma" }, "repeat": { "description": "Repeat", "suggested_key": "Alt+Shift+R" } }, "browser_action": { "default_icon": "assets\/icon.png", "default_popup": "popup.html" }, "web_accessible_resources": [ "script.js", "content.js" ], "permissions": [ "tabs", "http:\/\/*\/*", "https:\/\/*\/*", "background", "contentSettings" ], "icons": { "16": "assets\/icon.png", "48": "assets\/icon.png", "128": "assets\/icon.png" } } |