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」です。
拡張機能のスクリーンショット
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 拡張機能の基本情報
| 名前 | |
| ID | bglclhiilefknmpahmhjpbildepahbfa |
| 公式URL | 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 |
| Eメール | [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
} | |