Nextube - The missing next button
Next button for YouTube
什么是Nextube - The missing next button?
Nextube - The missing next button是由Nadav开发的Chrome扩展程序,该扩展的主要功能是“Next button for YouTube”。
扩展截图
下载Nextube - The missing next button扩展crx文件
下载Nextube - The missing next button扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。
扩展使用说明
Nextube adds a YouTube next button in your browser windows! No more searching for the YouTube tab just to change the current song, with Nextube, just press the next icon and YouTube will play the next available song. Notes: - Please refresh your YouTube tabs after installing Nextube - Nextube will only control the first playing YouTube tab so you can safely keep other YouTube tabs/windows open when not playing.
扩展基本信息
名称 | |
ID | kefiabkknppcjbbimoijcjbcehlcmcco |
官方URL | https://chromewebstore.google.com/detail/nextube-the-missing-next/kefiabkknppcjbbimoijcjbcehlcmcco |
简介 | Next button for YouTube |
文件大小 | 11.39 KB |
安装次数 | 175 |
当前版本 | 0.9.3 |
更新时间 | 2016-03-06 |
上架时间 | 2016-03-06 |
评分 | 4.82/5 共11次评分 |
开发者 | Nadav |
付费类型 | free |
支持的语言 | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "Nextube - The missing next button", "short_name": "Nextube", "version": "0.9.3", "manifest_version": 2, "description": "Next button for YouTube", "icons": { "16": "icons\/yn16.png", "48": "icons\/yn48.png", "128": "icons\/yn128.png" }, "background": { "page": "src\/bg\/background.html", "persistent": true }, "browser_action": { "default_icon": { "19": "icons\/yn19.png", "38": "icons\/yn72.png" }, "default_title": "Nextube" }, "commands": { "next_song": { "suggested_key": { "default": "Ctrl+N", "mac": "MacCtrl+N" }, "description": "Play Next" }, "pause": { "suggested_key": { "default": "Ctrl+P", "mac": "MacCtrl+P" }, "description": "Play\/Pause" } }, "permissions": [ "tabs", "contextMenus" ], "content_scripts": [ { "matches": [ "https:\/\/www.youtube.com\/*" ], "js": [ "src\/inject\/inject.js" ] } ] } |