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/ 拡張機能の基本情報
| 名前 | |
| 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 |
| Eメール | [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
}
}
} | |