iShuffle

App to control Apple Music, Spotify, SoundCloud and Amazon Music Media Player.

什么是iShuffle?

iShuffle是由Abhishek Kambli开发的Chrome扩展程序,该扩展的主要功能是“App to control Apple Music, Spotify, SoundCloud and Amazon Music Media Player.”。

扩展截图

screenshot

下载iShuffle扩展crx文件

下载iShuffle扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。

扩展使用说明

                        iShuffle is a remote controller for your favorite music players. You can control Apple Music, Spotify, SoundCloud and Amazon Music as well as YouTube.                    

扩展基本信息

名称 iShuffle iShuffle
ID cdnnpipncmghbcfkadecjchajedkegbc
官方URL https://chromewebstore.google.com/detail/ishuffle/cdnnpipncmghbcfkadecjchajedkegbc
简介 App to control Apple Music, Spotify, SoundCloud and Amazon Music Media Player.
文件大小 253 KB
安装次数 76
当前版本 0.0.3
更新时间 2020-01-10
上架时间 2020-01-08
评分 5.00/5 共1次评分
开发者 Abhishek Kambli
电子邮箱 [email protected]
付费类型 free
扩展官网 https://www.i-shuffle.netlify.com/
支持的语言 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\/*"
    ]
}