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是由tobias.thyssen开发的Chrome扩展程序,该扩展的主要功能是“Control Pocket Casts podcast webapp from anywhere!”。
扩展截图
下载Media key support for Pocket Casts扩展crx文件
下载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 } } } |