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 مع الأصدقاء لتثبيت الامتدادات بسهولة.

تعليمات استخدام التمديد

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