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 |
官方網址 | 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" ] } ] } |