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 द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Control Pocket Casts podcast webapp from anywhere!"।

एक्सटेंशन स्क्रीनशॉट्स

screenshot
screenshot
screenshot

एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें

crx प्रारूप में Media key support for Pocket Casts एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ 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
ईमेल Tobias.thyssen@gmail.com
भुगतान के प्रकार 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
        }
    }
}