Redirect for Spotify

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

Redirect for Spotify क्या है?

Redirect for Spotify kobelobster द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Redirects open.spotify.com links to your desktop application."।

एक्सटेंशन स्क्रीनशॉट्स

screenshot

एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें

crx प्रारूप में Redirect for Spotify एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ crx फ़ाइलों को साझा करें ताकि क्रोम एक्सटेंशन को आसानी से स्थापित किया जा सके।

एक्सटेंशन उपयोग निर्देश

                        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"
    ]
}