Spotify Controller

Controll your Spotify player via shortcut commands

Spotify Controllerคืออะไร?

Spotify Controller เป็นส่วนขยายของ Chrome ที่พัฒนาโดย Elias Wennerlund และคุณลักษณะหลักของมันคือ "Controll your Spotify player via shortcut commands"

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

screenshot

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

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

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

                        Are you tired of switching tabs just to change song? With Spotify Controller you can use shortcut commands instead!

Standard commands:
    Back button: Alt+Shift+D
    Pause/Play: Alt+Shift+F
    Next button: Alt+Shift+G

You can also add shortcuts to the Shuffle and Repeat buttons.

If you want to change the commands, go to chrome://extensions/shortcuts                    

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

ชื่อ Spotify Controller Spotify Controller
ID jpjbjbgjbicfeifjclhojfelcifcndnh
URL อย่างเป็นทางการ https://chrome.google.com/webstore/detail/spotify-controller/jpjbjbgjbicfeifjclhojfelcifcndnh
คำอธิบาย Controll your Spotify player via shortcut commands
ขนาดไฟล์ 15.11 KB
จำนวนการติดตั้ง 3,000
เวอร์ชันปัจจุบัน 1.2.0
อัปเดตครั้งล่าสุด 2021-06-04
วันที่เผยแพร่ 2020-08-24
คะแนน 3.86/5 รวมทั้งหมด 7 คะแนน
ผู้พัฒนา Elias Wennerlund
อีเมล [email protected]
ประเภทการชำระเงิน free
ภาษาที่รองรับ en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Spotify Controller",
    "description": "Controll your Spotify player via shortcut commands",
    "author": "Elias Wennerlund",
    "version": "1.2.0",
    "permissions": [
        "tabs",
        "commands"
    ],
    "icons": {
        "128": "128.png"
    },
    "content_scripts": [
        {
            "matches": [
                "https:\/\/open.spotify.com\/*"
            ],
            "run_at": "document_idle",
            "js": [
                "content.js"
            ]
        }
    ],
    "background": {
        "scripts": [
            "background.js"
        ],
        "persistent": true
    },
    "browser_action": {
        "default_icon": {
            "128": "128.png"
        }
    },
    "commands": {
        "prev": {
            "suggested_key": {
                "default": "Alt+Shift+D"
            },
            "description": "Back button",
            "global": false
        },
        "play-pause": {
            "suggested_key": {
                "default": "Alt+Shift+F"
            },
            "description": "Play\/Pause button",
            "global": false
        },
        "next": {
            "suggested_key": {
                "default": "Alt+Shift+G"
            },
            "description": "Next button",
            "global": false
        },
        "shuffle": {
            "description": "Shuffle button"
        },
        "repeat": {
            "description": "Repeat button"
        }
    },
    "manifest_version": 2
}