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 กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย Chrome อย่างง่ายดาย

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

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