Spotify Open In App

Extension to get rid of the Spotify web player and open clicked links directly in the Spotify Desktop application

Spotify Open In Appคืออะไร?

Spotify Open In App เป็นส่วนขยายของ Chrome ที่พัฒนาโดย kampfkeksgeschwader11 และคุณลักษณะหลักของมันคือ "Extension to get rid of the Spotify web player and open clicked links directly in the Spotify Desktop application"

ดาวน์โหลดไฟล์ CRX ของส่วนขยาย Spotify Open In App

ดาวน์โหลดไฟล์ส่วนขยาย Spotify Open In App ในรูปแบบ crx และติดตั้งส่วนขยาย Chrome ด้วยตนเองในเบราว์เซอร์หรือแชร์ไฟล์ crx กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย Chrome อย่างง่ายดาย

คำแนะนำในการใช้ส่วนขยาย

                        You are sick of Spotify links opening in the web player? We have the solution!                    

ข้อมูลพื้นฐานของส่วนขยาย

ชื่อ Spotify Open In App Spotify Open In App
ID djbmbhjjincdlckokbmdalcnflihkjpa
URL อย่างเป็นทางการ https://chrome.google.com/webstore/detail/spotify-open-in-app/djbmbhjjincdlckokbmdalcnflihkjpa
คำอธิบาย Extension to get rid of the Spotify web player and open clicked links directly in the Spotify Desktop application
ขนาดไฟล์ 8.44 KB
จำนวนการติดตั้ง 2,000
เวอร์ชันปัจจุบัน 0.21
อัปเดตครั้งล่าสุด 2018-07-30
วันที่เผยแพร่ 2018-07-30
คะแนน 4.63/5 รวมทั้งหมด 8 คะแนน
ผู้พัฒนา kampfkeksgeschwader11
อีเมล [email protected]
ประเภทการชำระเงิน free
เว็บไซต์ส่วนขยาย https://kampfkeksgeschwader.wixsite.com/spotifyopeninapp
ภาษาที่รองรับ en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Spotify Open In App",
    "version": "0.21",
    "description": "Extension to get rid of the Spotify web player and open clicked links directly in the Spotify Desktop application",
    "manifest_version": 2,
    "icons": {
        "16": "SpotifyOpenInApp16.png",
        "48": "SpotifyOpenInApp48.png",
        "128": "SpotifyOpenInApp128.png"
    },
    "permissions": [
        "storage"
    ],
    "content_scripts": [
        {
            "matches": [
                "https:\/\/open.spotify.com\/*"
            ],
            "js": [
                "content.js"
            ]
        }
    ],
    "background": {
        "scripts": [
            "background.js"
        ],
        "persistent": false
    }
}