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
Eメール [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\/*"
    ]
}