Spotify Controller

Controll your Spotify player via shortcut commands

Hvad er Spotify Controller?

Spotify Controller er en Chrome-udvidelse udviklet af Elias Wennerlund, og dens hovedfunktion er "Controll your Spotify player via shortcut commands".

Udvidelsesskærmbilleder

screenshot

Download Spotify Controller-udvidelses-CRX-fil

Download Spotify Controller-udvidelsesfiler i crx-format, installer Chrome-udvidelser manuelt i browseren eller del crx-filer med venner for nemt at installere Chrome-udvidelser.

Brugsanvisning til Udvidelsen

                        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                    

Grundlæggende oplysninger om udvidelsen

Navn Spotify Controller Spotify Controller
ID jpjbjbgjbicfeifjclhojfelcifcndnh
Officiel URL https://chrome.google.com/webstore/detail/spotify-controller/jpjbjbgjbicfeifjclhojfelcifcndnh
Beskrivelse Controll your Spotify player via shortcut commands
Filstørrelse 15.11 KB
Antal Installationer 3,000
Nuværende Version 1.2.0
Senest Opdateret 2021-06-04
Udgivelsesdato 2020-08-24
Bedømmelse 3.86/5 Samlet 7 Bedømmelser
Udvikler Elias Wennerlund
E-mail [email protected]
Betalingsmetode free
Understøttede Sprog 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
}