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 파일 다운로드

크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.

확장 프로그램 사용 설명서

                        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\/*"
    ]
}