Auto open in the Spotify app

Automatically sends all Spotify URLs to the dedicated Spotify app

Was ist Auto open in the Spotify app?

Auto open in the Spotify app ist eine Chrome-Erweiterung, die von Ben Cheshire entwickelt wurde, und ihr Hauptmerkmal ist "Automatically sends all Spotify URLs to the dedicated Spotify app".

Erweiterungsscreenshots

screenshot

Auto open in the Spotify app-Erweiterungs-CRX-Datei herunterladen

Laden Sie Auto open in the Spotify app-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

                        This extension will automatically send all Spotify URLs to the dedicated Spotify app. Make sure you've installed the official app or it won't work!

No persistent background processes will run while this extension is active :)                    

Grundlegende Informationen zur Erweiterung

Name Auto open in the Spotify app Auto open in the Spotify app
ID pkghcmlaendnidgjofmeeaalkiphalkg
Offizielle URL https://chromewebstore.google.com/detail/auto-open-in-the-spotify/pkghcmlaendnidgjofmeeaalkiphalkg
Beschreibung Automatically sends all Spotify URLs to the dedicated Spotify app
Dateigröße 41.94 KB
Installationsanzahl 339
Aktuelle Version 1.2.1
Letztes Update 2020-12-08
Veröffentlichungsdatum 2020-05-23
Bewertung 5.00/5 Insgesamt 5 Bewertungen
Entwickler Ben Cheshire
E-Mail [email protected]
Zahlungsart free
Unterstützte Sprachen en-GB
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Auto open in the Spotify app",
    "author": "Ben Cheshire",
    "short_name": "AoS",
    "version": "1.2.1",
    "manifest_version": 2,
    "description": "Automatically sends all Spotify URLs to the dedicated Spotify app",
    "browser_action": {
        "default_icon": {
            "19": "img\/icon19.png",
            "38": "img\/icon38.png"
        }
    },
    "icons": {
        "16": "img\/icon16.png",
        "19": "img\/icon19.png",
        "38": "img\/icon38.png",
        "48": "img\/icon48.png",
        "128": "img\/icon128.png",
        "256": "img\/icon256.png"
    },
    "permissions": [
        "storage"
    ],
    "background": {
        "persistent": false,
        "scripts": [
            "1.js"
        ]
    },
    "options_page": "bFramework\/options.html",
    "content_scripts": [
        {
            "matches": [
                "*:\/\/open.spotify.com\/*",
                "*:\/\/play.spotify.com\/*"
            ],
            "js": [
                "2.js"
            ],
            "run_at": "document_start"
        }
    ],
    "version_name": "1.2.1",
    "minimum_chrome_version": "80"
}