Music Pause/Resume

Pause and resume streaming music with a keyboard shortcut

Music Pause/Resumeคืออะไร?

Music Pause/Resume เป็นส่วนขยายของ Chrome ที่พัฒนาโดย josepcn และคุณลักษณะหลักของมันคือ "Pause and resume streaming music with a keyboard shortcut"

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

screenshot

ดาวน์โหลดไฟล์ CRX ของส่วนขยาย Music Pause/Resume

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

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

                        Pause and resume your music with just one key shortcut, anywhere from your desktop.

Currently supported services:
- Soundcloud
- Rdio
- Deezer
- Google Pay Music
- BBC Radio 1 (pop-up window)
- Mixcloud

Go to chrome://extensions/ to set up the keyboard shortcut you want to use for pausing / resuming your music.

Super simple, no icon on your browser, no popup, just one hotkey

Your favorite service is not listed? Get in contact! will see what we can do or if you are a developer, go to our github page.                    

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

ชื่อ Music Pause/Resume Music Pause/Resume
ID hnpodgbofjolhnfeeakhkjfonnhekaim
URL อย่างเป็นทางการ https://chrome.google.com/webstore/detail/music-pauseresume/hnpodgbofjolhnfeeakhkjfonnhekaim
คำอธิบาย Pause and resume streaming music with a keyboard shortcut
ขนาดไฟล์ 19.36 KB
จำนวนการติดตั้ง 15
เวอร์ชันปัจจุบัน 0.1.4
อัปเดตครั้งล่าสุด 2015-05-27
วันที่เผยแพร่ 2015-05-27
คะแนน 1.00/5 รวมทั้งหมด 1 คะแนน
ผู้พัฒนา josepcn
ประเภทการชำระเงิน free
เว็บไซต์ส่วนขยาย https://github.com/josepcn/caesura
ภาษาที่รองรับ en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Music Pause\/Resume",
    "short_name": "caesura",
    "description": "Pause and resume streaming music with a keyboard shortcut",
    "version": "0.1.4",
    "content_security_policy": "script-src 'self' https:\/\/ssl.google-analytics.com; object-src 'self'",
    "commands": {
        "toggle-audio-playback": {
            "suggested_key": {
                "default": "Ctrl+Shift+0"
            },
            "description": "Toggle audio playback",
            "global": true
        },
        "debug": {
            "suggested_key": {
                "default": "Ctrl+Shift+9"
            },
            "description": "debug",
            "global": false
        }
    },
    "content_scripts": [
        {
            "matches": [
                "http:\/\/*\/*",
                "https:\/\/*\/*"
            ],
            "js": [
                "common.js",
                "contentScript.js"
            ]
        }
    ],
    "icons": {
        "128": "icons\/icon_key_128.png"
    },
    "background": {
        "scripts": [
            "common.js",
            "eventPage.js"
        ],
        "persistent": false
    },
    "permissions": [
        "tabs",
        "storage",
        "nativeMessaging"
    ]
}