Spotify Controller

Controll your Spotify player via shortcut commands

Vad är Spotify Controller?

Spotify Controller är en Chrome-tillägg utvecklad av Elias Wennerlund, och dess huvudfunktion är "Controll your Spotify player via shortcut commands".

Tilläggsskärmbilder

screenshot

Ladda ner Spotify Controller-förlängningens CRX-fil

Ladda ner Spotify Controller-filändelser i crx-format, installera Chrome-tillägg manuellt i webbläsaren eller dela crx-filerna med vänner för att enkelt installera Chrome-tillägg.

Användarmanual för Tillägg

                        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äggande Information om Tillägg

Namn Spotify Controller Spotify Controller
ID jpjbjbgjbicfeifjclhojfelcifcndnh
Officiell webbadress https://chrome.google.com/webstore/detail/spotify-controller/jpjbjbgjbicfeifjclhojfelcifcndnh
Beskrivning Controll your Spotify player via shortcut commands
Filstorlek 15.11 KB
Antal Installationer 3,000
Aktuell Version 1.2.0
Senast Uppdaterad 2021-06-04
Publiceringsdatum 2020-08-24
Betyg 3.86/5 Totalt 7 Betyg
Utvecklare Elias Wennerlund
E-post [email protected]
Betalningssätt free
Stödda Språk 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
}