Auto open in the Spotify app

Automatically sends all Spotify URLs to the dedicated Spotify app

ما هو Auto open in the Spotify app؟

Auto open in the Spotify app هو إضافة Chrome تم تطويرها بواسطة Ben Cheshire، والميزة الرئيسية لها هي "Automatically sends all Spotify URLs to the dedicated Spotify app".

لقطات شاشة التمديد

screenshot

تحميل ملف CRX للإضافة Auto open in the Spotify app

قم بتنزيل ملفات الامتداد Auto open in the Spotify app بتنسيق crx ، وقم بتثبيت الامتدادات يدويًا في متصفح Chrome ، أو شارك ملفات crx مع الأصدقاء لتثبيت الامتدادات بسهولة.

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

                        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 :)                    

معلومات أساسية عن التمديد

الاسم Auto open in the Spotify app Auto open in the Spotify app
ID pkghcmlaendnidgjofmeeaalkiphalkg
عنوان URL الرسمي https://chromewebstore.google.com/detail/auto-open-in-the-spotify/pkghcmlaendnidgjofmeeaalkiphalkg
الوصف Automatically sends all Spotify URLs to the dedicated Spotify app
حجم الملف 41.94 KB
عدد التثبيتات 339
النسخة الحالية 1.2.1
آخر تحديث 2020-12-08
تاريخ النشر 2020-05-23
تقييم 5.00/5 مجموع تقييمات 5
المطور Ben Cheshire
البريد الإلكتروني [email protected]
نوع الدفع free
اللغات المدعومة 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"
}