Music Pause/Resume

Pause and resume streaming music with a keyboard shortcut

Music Pause/Resume là gì?

Music Pause/Resume là một tiện ích mở rộng Chrome được phát triển bởi josepcn, và tính năng chính của nó là "Pause and resume streaming music with a keyboard shortcut".

Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng

screenshot

Tải xuống tệp CRX của tiện ích mở rộng Music Pause/Resume

Tải xuống các tệp mở rộng Music Pause/Resume dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.

Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng

                        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.                    

Thông Tin Cơ Bản về Tiện Ích Mở Rộng

Tên Music Pause/Resume Music Pause/Resume
ID hnpodgbofjolhnfeeakhkjfonnhekaim
URL Chính Thức https://chrome.google.com/webstore/detail/music-pauseresume/hnpodgbofjolhnfeeakhkjfonnhekaim
Mô tả Pause and resume streaming music with a keyboard shortcut
Kích Thước Tệp 19.36 KB
Số Lần Cài Đặt 15
Phiên Bản Hiện Tại 0.1.4
Cập Nhật Lần Cuối 2015-05-27
Ngày Phát Hành 2015-05-27
Đánh Giá 1.00/5 Tổng số 1 Đánh Giá
Nhà Phát Triển josepcn
Loại Thanh Toán free
Trang Web Mở Rộng https://github.com/josepcn/caesura
Ngôn Ngữ Được Hỗ Trợ 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"
    ]
}