DiFmShuffle

Allows you to shuffle between stations at di.fm

Was ist DiFmShuffle?

DiFmShuffle ist eine Chrome-Erweiterung, die von Hebron George entwickelt wurde, und ihr Hauptmerkmal ist "Allows you to shuffle between stations at di.fm".

Erweiterungsscreenshots

screenshot

DiFmShuffle-Erweiterungs-CRX-Datei herunterladen

Laden Sie DiFmShuffle-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

                        Have you ever wanted to play a random station on Digitally Imported? Well, now you have a convenient button to do it for you!

Version 1.3:
 - Functional again!
 - Now accounting for di.fm's renamed web player and channel structure

Version 1.2:
 - Fixed to work on the new Digitally Imported site
 - Shuffle works along with the persistent player
 - Many thanks to @luqmaan

Version 1.1:
 - Fixed bug where "Shuffle Channel" was over lapped by the log-in/sign-up buttons. Renamed button to "Shuffle".                    

Grundlegende Informationen zur Erweiterung

Name DiFmShuffle DiFmShuffle
ID lajekjgijdmpgdmogodpedkobhhmkgdj
Offizielle URL https://chromewebstore.google.com/detail/difmshuffle/lajekjgijdmpgdmogodpedkobhhmkgdj
Beschreibung Allows you to shuffle between stations at di.fm
Dateigröße 1.12 MB
Installationsanzahl 23
Aktuelle Version 1.3
Letztes Update 2017-04-22
Veröffentlichungsdatum 2017-04-22
Bewertung 4.00/5 Insgesamt 4 Bewertungen
Entwickler Hebron George
Zahlungsart free
Erweiterungswebsite https://github.com/hebron-george/DiFmShuffle
Hilfeseite URL https://github.com/hebron-george/DiFmShuffle
Unterstützte Sprachen en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "DiFmShuffle",
    "description": "Allows you to shuffle between stations at di.fm",
    "version": "1.3",
    "permissions": [
        "http:\/\/di.fm\/*",
        "https:\/\/di.fm\/*",
        "http:\/\/www.di.fm\/*",
        "https:\/\/www.di.fm\/*"
    ],
    "web_accessible_resources": [
        "injectButton.js"
    ],
    "content_scripts": [
        {
            "matches": [
                "http:\/\/www.di.fm\/*",
                "https:\/\/www.di.fm\/*",
                "http:\/\/di.fm\/*",
                "https:\/\/di.fm\/*"
            ],
            "js": [
                "myscript.js"
            ],
            "run_at": "document_end"
        }
    ]
}