YouTube Next
Use you media keys to control YouTube
什么是YouTube Next?
YouTube Next是由Team Encil开发的Chrome扩展程序,该扩展的主要功能是“Use you media keys to control YouTube”。
扩展截图
下载YouTube Next扩展crx文件
下载YouTube Next扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。
扩展使用说明
Use your Media Keys to control YouTube. To Change a song, Click Next, Pause, Stop etc. from your Keyboard even without opening YouTube. It's a simple and easy tool, which will help you if you love to hear Music on Youtube. This extension will be enabled only when you visit YouTube and will be disabled for everything else.
扩展基本信息
名称 | |
ID | mojigipbndoflnjonbejgkehjdeajlmm |
官方URL | https://chrome.google.com/webstore/detail/youtube-next/mojigipbndoflnjonbejgkehjdeajlmm |
简介 | Use you media keys to control YouTube |
文件大小 | 22.7 KB |
安装次数 | 379 |
当前版本 | 0.1 |
更新时间 | 2016-11-11 |
上架时间 | 2016-11-11 |
评分 | 4.42/5 共19次评分 |
开发者 | Team Encil |
电子邮箱 | [email protected] |
付费类型 | free |
支持的语言 | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "YouTube Next", "version": "0.1", "icons": { "16": "icons\/icon16.png", "48": "icons\/icon48.png", "128": "icons\/icon128.png" }, "description": "Use you media keys to control YouTube", "homepage_url": "http:\/\/youtube.com", "permissions": [ "tabs", "contextMenus" ], "manifest_version": 2, "commands": { "prev": { "suggested_key": { "default": "MediaPrevTrack", "mac": "MediaPrevTrack" }, "description": "Play Previous Track", "global": true }, "play-pause": { "suggested_key": { "default": "MediaPlayPause", "mac": "MediaPlayPause" }, "description": "Play\/Pause Active Audio", "global": true }, "next": { "suggested_key": { "default": "MediaNextTrack", "mac": "MediaNextTrack" }, "description": "Play Next Track", "global": true }, "stop": { "suggested_key": { "default": "MediaStop", "mac": "MediaStop" }, "description": "Stop Audio", "global": true } }, "background": { "scripts": [ "background.js" ], "persistent": true }, "page_action": { "default_title": "Use you media keys to control YouTube", "default_icon": { "19": "icons\/icon19.png", "38": "icons\/icon38.png" } }, "content_scripts": [ { "matches": [ "*:\/\/*.youtube.com\/*" ], "js": [ "shared.js", "youtubenext.js" ] } ] } |