Media key support for Pocket Casts
Control Pocket Casts podcast webapp from anywhere!
Media key support for Pocket Castsคืออะไร?
Media key support for Pocket Casts เป็นส่วนขยายของ Chrome ที่พัฒนาโดย tobias.thyssen และคุณลักษณะหลักของมันคือ "Control Pocket Casts podcast webapp from anywhere!"
ภาพหน้าจอของส่วนขยาย
ดาวน์โหลดไฟล์ CRX ของส่วนขยาย Media key support for Pocket Casts
ดาวน์โหลดไฟล์ส่วนขยาย Media key support for Pocket Casts ในรูปแบบ crx และติดตั้งส่วนขยาย Chrome ด้วยตนเองในเบราว์เซอร์หรือแชร์ไฟล์ crx กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย Chrome อย่างง่ายดาย
คำแนะนำในการใช้ส่วนขยาย
Super simple and lightweight package that adds support for using your media keys to control Pocket Casts webapp from anywhere on your computer. Features: - Pause / play - Skip forward 30 seconds - Skip back 10 seconds If you don't want the extension to hijack your mediakeys; Go to chrome://extensions. At the bottom there's a link called 'Keyboard shortcuts' where you can choose your own shortcuts for the extension. Contribute or star on GitHub: https://github.com/tobiasthyssen/pocket-casts-media-controls Pocket Casts: https://www.pocketcasts.com/
ข้อมูลพื้นฐานของส่วนขยาย
ชื่อ | Media key support for Pocket Casts |
ID | edloapkoalgpnkdknpmclplmfkecgpai |
URL อย่างเป็นทางการ | https://chromewebstore.google.com/detail/media-key-support-for-poc/edloapkoalgpnkdknpmclplmfkecgpai |
คำอธิบาย | Control Pocket Casts podcast webapp from anywhere! |
ขนาดไฟล์ | 8.31 KB |
จำนวนการติดตั้ง | 168 |
เวอร์ชันปัจจุบัน | 1.2.3 |
อัปเดตครั้งล่าสุด | 2021-09-21 |
วันที่เผยแพร่ | 2020-05-25 |
คะแนน | 4.44/5 รวมทั้งหมด 9 คะแนน |
ผู้พัฒนา | tobias.thyssen |
อีเมล | [email protected] |
ประเภทการชำระเงิน | free |
เว็บไซต์ส่วนขยาย | https://github.com/tobiasthyssen/pocket-casts-media-controls |
ภาษาที่รองรับ | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "Media key support for Pocket Casts", "version": "1.2.3", "author": "Tobias Thyssen, John Taylor (Active maintainer)", "description": "Control Pocket Casts podcast webapp from anywhere!", "icons": { "128": "icons\/keyboard-128.png" }, "permissions": [ "tabs", "https:\/\/play.pocketcasts.com\/*" ], "background": { "scripts": [ "background.js" ], "persistent": false }, "content_scripts": [ { "matches": [ "https:\/\/play.pocketcasts.com\/*" ], "js": [ "commands.js" ] } ], "commands": { "play-pause": { "suggested_key": { "default": "MediaPlayPause" }, "description": "Play\/Pause", "global": true }, "jump-back": { "suggested_key": { "default": "MediaPrevTrack" }, "description": "Jump back 10 seconds", "global": true }, "jump-forward": { "suggested_key": { "default": "MediaNextTrack" }, "description": "Jump forward 30 seconds", "global": true } } } |