Extension Player for Spotify

Control Spotify playback from Chrome

Extension Player for Spotifyคืออะไร?

Extension Player for Spotify เป็นส่วนขยายของ Chrome ที่พัฒนาโดย Curtis Hu และคุณลักษณะหลักของมันคือ "Control Spotify playback from Chrome"

ภาพหน้าจอของส่วนขยาย

screenshot
screenshot
screenshot
screenshot

ดาวน์โหลดไฟล์ CRX ของส่วนขยาย Extension Player for Spotify

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

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

                        Control Spotify's playback from Chrome for SPOTIFY PREMIUM. Don't interrupt workflow as you listen to music. On any computer with this your google account, control Spotify playing out of phone, computer, or tablet etc.

> TOGGLE PLAY ⏯️; SKIP NEXT TRACK ⏭️; SKIP PREVIOUS TRACK ⏮️ (Keyboard Media Keys)
> Click on Artist to look up artist's profile page
> Click on Song title to look up song profile page
> Click on Album to look up album page
> Open Spotify Web Player by right click on page or browser action icon.
> Option to open Spotify web player when chrome starts

*must have Spotify Premium
*should be signed in with Spotify on browser.                    

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

ชื่อ Extension Player for Spotify Extension Player for Spotify
ID dnngcfpcnpmakpjeaeapphjihhbenilk
URL อย่างเป็นทางการ https://chromewebstore.google.com/detail/extension-player-for-spot/dnngcfpcnpmakpjeaeapphjihhbenilk
คำอธิบาย Control Spotify playback from Chrome
ขนาดไฟล์ 24.39 KB
จำนวนการติดตั้ง 5,062
เวอร์ชันปัจจุบัน 1.3
อัปเดตครั้งล่าสุด 2020-12-10
วันที่เผยแพร่ 2020-11-01
คะแนน 5.00/5 รวมทั้งหมด 11 คะแนน
ผู้พัฒนา Curtis Hu
อีเมล [email protected]
ประเภทการชำระเงิน free
ภาษาที่รองรับ en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Extension Player for Spotify",
    "version": "1.3",
    "description": "Control Spotify playback from Chrome",
    "icons": {
        "16": "images\/logo16.png",
        "24": "images\/logo24.png",
        "32": "images\/logo32.png",
        "64": "images\/logo64.png",
        "128": "images\/logo128.png"
    },
    "content_security_policy": "default-src 'self'; img-src https:\/\/i.scdn.co\/image\/ 'self'; connect-src https:\/\/open.spotify.com\/ https:\/\/api.spotify.com\/",
    "incognito": "not_allowed",
    "permissions": [
        "tabs",
        "contextMenus",
        "storage"
    ],
    "background": {
        "page": "background.html",
        "persistent": true
    },
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "js": [
                "content.js"
            ]
        }
    ],
    "browser_action": {
        "default_popup": "\/popup\/mini\/mini.html",
        "default_icon": {
            "16": "images\/logo16.png",
            "24": "images\/logo24.png",
            "32": "images\/logo32.png",
            "64": "images\/logo64.png",
            "128": "images\/logo128.png"
        }
    },
    "options_page": "\/options\/options.html",
    "commands": {
        "toggle_play": {
            "suggested_key": {
                "default": "MediaPlayPause"
            },
            "description": "play\/pause spotify",
            "global": true
        },
        "skip_backwards": {
            "suggested_key": {
                "default": "MediaPrevTrack"
            },
            "description": "skip backwards",
            "global": true
        },
        "skip_forwards": {
            "suggested_key": {
                "default": "MediaNextTrack"
            },
            "description": "skip forwards",
            "global": true
        }
    },
    "manifest_version": 2
}