iShuffle

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

Was ist iShuffle?

iShuffle ist eine Chrome-Erweiterung, die von Abhishek Kambli entwickelt wurde, und ihr Hauptmerkmal ist "App to control Apple Music, Spotify, SoundCloud and Amazon Music Media Player.".

Erweiterungsscreenshots

screenshot

iShuffle-Erweiterungs-CRX-Datei herunterladen

Laden Sie iShuffle-Erweiterungsdateien im crx-Format herunter, installieren Sie Chrome-Erweiterungen manuell im Browser oder teilen Sie die crx-Dateien mit Freunden, um Chrome-Erweiterungen einfach zu installieren.

Anleitung zur Verwendung der Erweiterung

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

Grundlegende Informationen zur Erweiterung

Name iShuffle iShuffle
ID cdnnpipncmghbcfkadecjchajedkegbc
Offizielle URL https://chromewebstore.google.com/detail/ishuffle/cdnnpipncmghbcfkadecjchajedkegbc
Beschreibung App to control Apple Music, Spotify, SoundCloud and Amazon Music Media Player.
Dateigröße 253 KB
Installationsanzahl 76
Aktuelle Version 0.0.3
Letztes Update 2020-01-10
Veröffentlichungsdatum 2020-01-08
Bewertung 5.00/5 Insgesamt 1 Bewertungen
Entwickler Abhishek Kambli
E-Mail [email protected]
Zahlungsart free
Erweiterungswebsite https://www.i-shuffle.netlify.com/
Unterstützte Sprachen 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\/*"
    ]
}