PowerPack for Pandora

Toggle activity with keyboard shortcuts on Pandora

O que é PowerPack for Pandora?

PowerPack for Pandora é uma extensão do Chrome desenvolvida por Smarticals, e sua principal característica é "Toggle activity with keyboard shortcuts on Pandora".

Capturas de Tela da Extensão

screenshot

Baixar o arquivo CRX da Extensão PowerPack for Pandora

Baixe arquivos de extensão PowerPack for Pandora no formato crx, instale manualmente as extensões do Chrome no navegador ou compartilhe os arquivos crx com amigos para instalar facilmente as extensões do Chrome.

Instruções de Uso da Extensão

                        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                    

Informações Básicas da Extensão

Nome PowerPack for Pandora PowerPack for Pandora
ID bglclhiilefknmpahmhjpbildepahbfa
URL Oficial https://chromewebstore.google.com/detail/powerpack-for-pandora/bglclhiilefknmpahmhjpbildepahbfa
Descrição Toggle activity with keyboard shortcuts on Pandora
Tamanho do Arquivo 29.32 KB
Contagem de Instalações 167
Versão Atual 0.1.0.5
Última Atualização 2020-12-13
Data de Publicação 2017-03-18
Classificação 4.75/5 Total de 4 Avaliações
Desenvolvedor Smarticals
Email [email protected]
Tipo de Pagamento free
Site da Extensão https://github.com/ibeals/powerpackforpandora
URL da Página de Política de Privacidade https://faq.vauxapp.com/articles/1218-terms-conditions-and-privacy-policy-the-bottom-line
Idiomas Suportados 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
}