PowerPack for Pandora
Toggle activity with keyboard shortcuts on Pandora
PowerPack for Pandoraคืออะไร?
PowerPack for Pandora เป็นส่วนขยายของ Chrome ที่พัฒนาโดย Smarticals และคุณลักษณะหลักของมันคือ "Toggle activity with keyboard shortcuts on Pandora"
ภาพหน้าจอของส่วนขยาย
ดาวน์โหลดไฟล์ CRX ของส่วนขยาย PowerPack for Pandora
ดาวน์โหลดไฟล์ส่วนขยาย 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 |
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 |
อีเมล | [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 } |