Redirect for Spotify

Redirects open.spotify.com links to your desktop application.

Τι είναι το Redirect for Spotify;

Το Redirect for Spotify είναι ένα πρόσθετο Chrome που αναπτύχθηκε από τον kobelobster, και η κύρια λειτουργία του είναι "Redirects open.spotify.com links to your desktop application.".

Στιγμιότυπα Επέκτασης

screenshot

Λήψη αρχείου CRX της επέκτασης Redirect for Spotify

Λήψη αρχείων επέκτασης Redirect for Spotify σε μορφή crx, εγκατάσταση των επεκτάσεων Chrome μη αυτόματα στον περιηγητή ή κοινοποίηση των αρχείων crx με φίλους για εύκολη εγκατάσταση των επεκτάσεων Chrome.

Οδηγίες Χρήσης της Επέκτασης

                        This is just a first version for Spotify. 

It supports redirecting links from open.spotify.com to your desktop app if they are

* an album
* a playllist
* a podcast
* a user
* an artist
* a song

Currently not supported is:

* Error handling
* Opening links while navigating spotify web ui. Currently requires reload of page

------

Licensing

Icon copyright by PINPOINT.WORLD from https://www.iconfinder.com/icons/4418005/redirect_refocuse_reorientate_repurpose_reroute_shift_switch_icon under license https://creativecommons.org/licenses/by/3.0/


Icon is taken from here https://www.iconfinder.com/icons/4418005/redirect_refocuse_reorientate_repurpose_reroute_shift_switch_icon using                    

Βασικές Πληροφορίες Επέκτασης

Όνομα Redirect for Spotify Redirect for Spotify
ID ljhalgddlebknpbdkgodfkamemjombpp
Επίσημο URL https://chromewebstore.google.com/detail/redirect-for-spotify/ljhalgddlebknpbdkgodfkamemjombpp
Περιγραφή Redirects open.spotify.com links to your desktop application.
Μέγεθος Αρχείου 5.78 KB
Αριθμός Εγκαταστάσεων 448
Τρέχουσα Έκδοση 0.2.0
Τελευταία Ενημέρωση 2020-04-12
Ημερομηνία Δημοσίευσης 2020-04-12
Αξιολόγηση 4.25/5 Συνολικά 8 Αξιολογήσεις
Προγραμματιστής kobelobster
Ηλεκτρονικό ταχυδρομείο [email protected]
Τύπος Πληρωμής free
Υποστηριζόμενες Γλώσσες en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Redirect for Spotify",
    "version": "0.2.0",
    "description": "Redirects open.spotify.com links to your desktop application.",
    "icons": {
        "48": "icons\/icon-48.png",
        "96": "icons\/icon-96.png"
    },
    "content_scripts": [
        {
            "matches": [
                "*:\/\/open.spotify.com\/*"
            ],
            "js": [
                "redirect.js"
            ]
        }
    ],
    "permissions": [
        "webNavigation"
    ]
}