iShuffle
App to control Apple Music, Spotify, SoundCloud and Amazon Music Media Player.
iShuffle là gì?
iShuffle là một tiện ích mở rộng Chrome được phát triển bởi Abhishek Kambli, và tính năng chính của nó là "App to control Apple Music, Spotify, SoundCloud and Amazon Music Media Player.".
Ả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 iShuffle
Tải xuống các tệp mở rộng iShuffle 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
iShuffle is a remote controller for your favorite music players. You can control Apple Music, Spotify, SoundCloud and Amazon Music as well as YouTube.
Thông Tin Cơ Bản về Tiện Ích Mở Rộng
Tên | iShuffle |
ID | cdnnpipncmghbcfkadecjchajedkegbc |
URL Chính Thức | https://chromewebstore.google.com/detail/ishuffle/cdnnpipncmghbcfkadecjchajedkegbc |
Mô tả | App to control Apple Music, Spotify, SoundCloud and Amazon Music Media Player. |
Kích Thước Tệp | 253 KB |
Số Lần Cài Đặt | 76 |
Phiên Bản Hiện Tại | 0.0.3 |
Cập Nhật Lần Cuối | 2020-01-10 |
Ngày Phát Hành | 2020-01-08 |
Đánh Giá | 5.00/5 Tổng số 1 Đánh Giá |
Nhà Phát Triển | Abhishek Kambli |
[email protected] | |
Loại Thanh Toán | free |
Trang Web Mở Rộng | https://www.i-shuffle.netlify.com/ |
Ngôn Ngữ Được Hỗ Trợ | en,ru |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "version": "0.0.3", "name": "iShuffle", "short_name": "iShuffle", "description": "App to control Apple Music, Spotify, SoundCloud and Amazon Music Media Player.", "default_locale": "en", "options_ui": { "page": "options.html" }, "background": { "scripts": [ "background.js" ] }, "browser_action": [], "content_scripts": [ { "all_frames": false, "matches": [ "http:\/\/*\/*", "https:\/\/*\/*" ], "js": [ "content.js" ] }, { "all_frames": false, "matches": [ "https:\/\/open.spotify.com\/*" ], "js": [ "spotifyContentScript.js" ] }, { "all_frames": false, "matches": [ "https:\/\/music.amazon.in\/*" ], "js": [ "amazonMusicContentScript.js" ] }, { "all_frames": false, "matches": [ "https:\/\/beta.music.apple.com\/*" ], "js": [ "appleMusicContentScript.js" ] }, { "all_frames": false, "matches": [ "https:\/\/soundcloud.com\/*" ], "js": [ "soundCloudContentScript.js" ] }, { "all_frames": false, "matches": [ "https:\/\/music.youtube.com\/watch?*" ], "js": [ "youtubeContentScript.js" ] } ], "icons": { "16": "assets\/img\/icon-16x16.png", "48": "assets\/img\/icon-48x48.png", "128": "assets\/img\/icon-128x128.png" }, "permissions": [ "storage", "tabs", "http:\/\/*\/", "https:\/\/*\/" ], "content_security_policy": "script-src 'self' 'unsafe-eval'; object-src 'self'; connect-src ws:\/\/localhost:*\/", "web_accessible_resources": [ "assets\/img\/*" ] } |