PowerPack for Pandora
Toggle activity with keyboard shortcuts on Pandora
Cos'è PowerPack for Pandora?
PowerPack for Pandora è un'estensione di Chrome sviluppata da Smarticals, e la sua funzione principale è "Toggle activity with keyboard shortcuts on Pandora".
Screenshot dell'Estensione
Scarica il file CRX dell'estensione PowerPack for Pandora
Scarica i file di estensione PowerPack for Pandora in formato crx, installa manualmente le estensioni di Chrome nel browser o condividi i file crx con gli amici per installare facilmente le estensioni di Chrome.
Istruzioni per l'Uso dell'Estensione
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
Informazioni di Base sull'Estensione
Nome | PowerPack for Pandora |
ID | bglclhiilefknmpahmhjpbildepahbfa |
URL Ufficiale | https://chromewebstore.google.com/detail/powerpack-for-pandora/bglclhiilefknmpahmhjpbildepahbfa |
Descrizione | Toggle activity with keyboard shortcuts on Pandora |
Dimensione del File | 29.32 KB |
Conteggio Installazioni | 167 |
Versione Corrente | 0.1.0.5 |
Ultimo Aggiornamento | 2020-12-13 |
Data di Pubblicazione | 2017-03-18 |
Valutazione | 4.75/5 Totale 4 Valutazioni |
Sviluppatore | Smarticals |
[email protected] | |
Tipo di Pagamento | free |
Sito Web dell'Estensione | https://github.com/ibeals/powerpackforpandora |
URL della Pagina della Politica sulla Privacy | https://faq.vauxapp.com/articles/1218-terms-conditions-and-privacy-policy-the-bottom-line |
Lingue Supportate | 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 } |