Media Control
Control Amazon music player, Spotify web player, and YouTube (HTML player only) without switching tabs.
Media Control là gì?
Media Control là một tiện ích mở rộng Chrome được phát triển bởi m.ryanmurphy, và tính năng chính của nó là "Control Amazon music player, Spotify web player, and YouTube (HTML player only) without switching tabs.".
Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng
Tải xuống tệp CRX của tiện ích mở rộng Media Control
Tải xuống các tệp mở rộng Media Control dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.
Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng
Media Control appears as a toolbar button, and is a simple dropdown to control media players from Amazon, Spotify, and YouTube (HTML player only). For each you can play and pause, and if listening from a playlist, go forward and back within the list. Spotify allows additional control of repeat and shuffle. YouTube allows additional control of playlist autoplay and mute functionality. Amazon allows for all of the above. You can also click the external link button to go directly to the tab. For each tab with a player you have open, a control will appear. If for some reason it is unable to control directly there appears a large button to go to the tab directly.
Thông Tin Cơ Bản về Tiện Ích Mở Rộng
Tên | |
ID | pncnfpeioeljgmelkbboabkefmccechp |
URL Chính Thức | https://chrome.google.com/webstore/detail/media-control/pncnfpeioeljgmelkbboabkefmccechp |
Mô tả | Control Amazon music player, Spotify web player, and YouTube (HTML player only) without switching tabs. |
Kích Thước Tệp | 371 KB |
Số Lần Cài Đặt | 96 |
Phiên Bản Hiện Tại | 1.5 |
Cập Nhật Lần Cuối | 2015-02-13 |
Ngày Phát Hành | 2015-02-13 |
Đánh Giá | 1.00/5 Tổng số 2 Đánh Giá |
Nhà Phát Triển | m.ryanmurphy |
[email protected] | |
Loại Thanh Toán | free |
Ngôn Ngữ Được Hỗ Trợ | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "Media Control", "version": "1.5", "manifest_version": 2, "description": "Control Amazon music player, Spotify web player, and YouTube (HTML player only) without switching tabs.", "homepage_url": "https:\/\/bitbucket.org\/whote\/media-control", "permissions": [ "tabs" ], "background": { "scripts": [ "background.js" ], "persistent": false }, "content_scripts": [ { "matches": [ "*:\/\/play.spotify.com\/*", "*:\/\/*.youtube.com\/*", "*:\/\/*.amazon.com\/*\/cloudplayer\/*" ], "js": [ "page-inject.js" ] } ], "icons": { "16": "images\/16.png", "48": "images\/48.png", "64": "images\/64.png", "128": "images\/128.png" }, "browser_action": { "default_icon": "images\/38.png", "default_title": "Media Control", "default_popup": "popup\/control.html" } } |