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!"입니다.

확장 프로그램 스크린샷

screenshot

Media key support for Pocket Casts 확장 프로그램 CRX 파일 다운로드

크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.

확장 프로그램 사용 설명서

                        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 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
        }
    }
}