Media key support for Pocket Casts
Control Pocket Casts podcast webapp from anywhere!
Media key support for Pocket Casts là gì?
Media key support for Pocket Casts là một tiện ích mở rộng Chrome được phát triển bởi tobias.thyssen, và tính năng chính của nó là "Control Pocket Casts podcast webapp from anywhere!".
Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng
Tải xuống tệp CRX của tiện ích mở rộng Media key support for Pocket Casts
Tải xuống các tệp mở rộng Media key support for Pocket Casts dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.
Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng
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/
Thông Tin Cơ Bản về Tiện Ích Mở Rộng
Tên | Media key support for Pocket Casts |
ID | edloapkoalgpnkdknpmclplmfkecgpai |
URL Chính Thức | https://chromewebstore.google.com/detail/media-key-support-for-poc/edloapkoalgpnkdknpmclplmfkecgpai |
Mô tả | Control Pocket Casts podcast webapp from anywhere! |
Kích Thước Tệp | 8.31 KB |
Số Lần Cài Đặt | 168 |
Phiên Bản Hiện Tại | 1.2.3 |
Cập Nhật Lần Cuối | 2021-09-21 |
Ngày Phát Hành | 2020-05-25 |
Đánh Giá | 4.44/5 Tổng số 9 Đánh Giá |
Nhà Phát Triển | tobias.thyssen |
[email protected] | |
Loại Thanh Toán | free |
Trang Web Mở Rộng | https://github.com/tobiasthyssen/pocket-casts-media-controls |
Ngôn Ngữ Được Hỗ Trợ | 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 } } } |