Spotify Controller

Controll your Spotify player via shortcut commands

Was ist Spotify Controller?

Spotify Controller ist eine Chrome-Erweiterung, die von Elias Wennerlund entwickelt wurde, und ihr Hauptmerkmal ist "Controll your Spotify player via shortcut commands".

Erweiterungsscreenshots

screenshot

Spotify Controller-Erweiterungs-CRX-Datei herunterladen

Laden Sie Spotify Controller-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

                        Are you tired of switching tabs just to change song? With Spotify Controller you can use shortcut commands instead!

Standard commands:
    Back button: Alt+Shift+D
    Pause/Play: Alt+Shift+F
    Next button: Alt+Shift+G

You can also add shortcuts to the Shuffle and Repeat buttons.

If you want to change the commands, go to chrome://extensions/shortcuts                    

Grundlegende Informationen zur Erweiterung

Name Spotify Controller Spotify Controller
ID jpjbjbgjbicfeifjclhojfelcifcndnh
Offizielle URL https://chrome.google.com/webstore/detail/spotify-controller/jpjbjbgjbicfeifjclhojfelcifcndnh
Beschreibung Controll your Spotify player via shortcut commands
Dateigröße 15.11 KB
Installationsanzahl 3,000
Aktuelle Version 1.2.0
Letztes Update 2021-06-04
Veröffentlichungsdatum 2020-08-24
Bewertung 3.86/5 Insgesamt 7 Bewertungen
Entwickler Elias Wennerlund
E-Mail [email protected]
Zahlungsart free
Unterstützte Sprachen en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Spotify Controller",
    "description": "Controll your Spotify player via shortcut commands",
    "author": "Elias Wennerlund",
    "version": "1.2.0",
    "permissions": [
        "tabs",
        "commands"
    ],
    "icons": {
        "128": "128.png"
    },
    "content_scripts": [
        {
            "matches": [
                "https:\/\/open.spotify.com\/*"
            ],
            "run_at": "document_idle",
            "js": [
                "content.js"
            ]
        }
    ],
    "background": {
        "scripts": [
            "background.js"
        ],
        "persistent": true
    },
    "browser_action": {
        "default_icon": {
            "128": "128.png"
        }
    },
    "commands": {
        "prev": {
            "suggested_key": {
                "default": "Alt+Shift+D"
            },
            "description": "Back button",
            "global": false
        },
        "play-pause": {
            "suggested_key": {
                "default": "Alt+Shift+F"
            },
            "description": "Play\/Pause button",
            "global": false
        },
        "next": {
            "suggested_key": {
                "default": "Alt+Shift+G"
            },
            "description": "Next button",
            "global": false
        },
        "shuffle": {
            "description": "Shuffle button"
        },
        "repeat": {
            "description": "Repeat button"
        }
    },
    "manifest_version": 2
}