PowerPack for Pandora

Toggle activity with keyboard shortcuts on Pandora

什麼是PowerPack for Pandora?

PowerPack for Pandora是由Smarticals開發的Chrome擴展程式,該擴展的主要功能是“Toggle activity with keyboard shortcuts on Pandora”。

擴展截圖

screenshot

下載PowerPack for Pandora擴展crx文件

下載PowerPack for Pandora擴展crx格式的文件,手動將Chrome擴充功能安裝到瀏覽器中,也可以將crx文件分享給朋友,輕鬆安裝Chrome擴充功能。

擴展使用說明

                        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                    

擴展基本資訊

名稱 PowerPack for Pandora PowerPack for Pandora
ID bglclhiilefknmpahmhjpbildepahbfa
官方網址 https://chromewebstore.google.com/detail/powerpack-for-pandora/bglclhiilefknmpahmhjpbildepahbfa
簡介 Toggle activity with keyboard shortcuts on Pandora
檔案大小 29.32 KB
安裝次數 167
目前版本 0.1.0.5
更新時間 2020-12-13
上架時間 2017-03-18
評分 4.75/5 共 4 次評分
開發者 Smarticals
電子郵箱 [email protected]
付費類型 free
擴展官網 https://github.com/ibeals/powerpackforpandora
隱私政策頁面URL https://faq.vauxapp.com/articles/1218-terms-conditions-and-privacy-policy-the-bottom-line
支援的語言 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
}