PowerPack for Pandora

Toggle activity with keyboard shortcuts on Pandora

PowerPack for Pandora là gì?

PowerPack for Pandora là một tiện ích mở rộng Chrome được phát triển bởi Smarticals, và tính năng chính của nó là "Toggle activity with keyboard shortcuts on Pandora".

Ả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 PowerPack for Pandora

Tải xuống các tệp mở rộng PowerPack for Pandora 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

                        Control Pandora music with simple keyboard shortcuts!

Ctrl-Shift-1 (Cmd for Mac) to Play/Pause the current song. If no tabs have Pandora open, it will open for you too.
Ctrl-Shift-2 (Cmd for Mac) to skip to the next song. If you press it twice (fast) it will change to another station.

Source code: https://github.com/ibeals/powerpackforpandora                    

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

Tên PowerPack for Pandora PowerPack for Pandora
ID bglclhiilefknmpahmhjpbildepahbfa
URL Chính Thức https://chromewebstore.google.com/detail/powerpack-for-pandora/bglclhiilefknmpahmhjpbildepahbfa
Mô tả Toggle activity with keyboard shortcuts on Pandora
Kích Thước Tệp 29.32 KB
Số Lần Cài Đặt 167
Phiên Bản Hiện Tại 0.1.0.5
Cập Nhật Lần Cuối 2020-12-13
Ngày Phát Hành 2017-03-18
Đánh Giá 4.75/5 Tổng số 4 Đánh Giá
Nhà Phát Triển Smarticals
Email [email protected]
Loại Thanh Toán free
Trang Web Mở Rộng https://github.com/ibeals/powerpackforpandora
URL Trang Chính Sách Bảo Mật https://faq.vauxapp.com/articles/1218-terms-conditions-and-privacy-policy-the-bottom-line
Ngôn Ngữ Được Hỗ Trợ en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "PowerPack for Pandora",
    "short_name": "PowerPack",
    "description": "Toggle activity with keyboard shortcuts on Pandora",
    "version": "0.1.0.5",
    "icons": {
        "16": "128logo.png",
        "38": "128logo.png",
        "48": "128logo.png",
        "96": "128logo.png",
        "128": "128logo.png"
    },
    "permissions": [
        "notifications",
        "tabs",
        "http:\/\/www.pandora.com\/*",
        "http:\/\/pandora.com\/*",
        "https:\/\/www.pandora.com\/*",
        "https:\/\/pandora.com\/*"
    ],
    "background": {
        "scripts": [
            "background.js"
        ],
        "persistent": false
    },
    "content_scripts": [
        {
            "matches": [
                "http:\/\/www.pandora.com\/*",
                "http:\/\/pandora.com\/*",
                "https:\/\/pandora.com\/*",
                "https:\/\/www.pandora.com\/*"
            ],
            "js": [
                "pandora_play_toggle.js"
            ]
        }
    ],
    "commands": {
        "toggle-pandora-play": {
            "suggested_key": {
                "default": "Ctrl+Shift+1"
            },
            "description": "Toggle Pandora Play and Pause",
            "global": true
        },
        "toggle-pandora-skip": {
            "suggested_key": {
                "default": "Ctrl+Shift+2"
            },
            "description": "Toggle Pandora Skip",
            "global": true
        }
    },
    "manifest_version": 2
}