Media key support for Pocket Casts
Control Pocket Casts podcast webapp from anywhere!
Qu'est-ce que Media key support for Pocket Casts ?
Media key support for Pocket Casts est une extension Chrome développée par tobias.thyssen, et sa fonction principale est "Control Pocket Casts podcast webapp from anywhere!".
Captures d'Écran de l'Extension
Télécharger le fichier CRX de l'extension Media key support for Pocket Casts
Téléchargez les fichiers d'extension Media key support for Pocket Casts au format crx, installez manuellement les extensions Chrome dans le navigateur ou partagez les fichiers crx avec des amis pour installer facilement les extensions Chrome.
Instructions d'Utilisation de l'Extension
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/
Informations de Base sur l'Extension
Nom | Media key support for Pocket Casts |
ID | edloapkoalgpnkdknpmclplmfkecgpai |
URL Officiel | https://chromewebstore.google.com/detail/media-key-support-for-poc/edloapkoalgpnkdknpmclplmfkecgpai |
Description | Control Pocket Casts podcast webapp from anywhere! |
Taille du Fichier | 8.31 KB |
Nombre d'Installations | 168 |
Version Actuelle | 1.2.3 |
Dernière Mise à Jour | 2021-09-21 |
Date de Publication | 2020-05-25 |
Évaluation | 4.44/5 Total 9 Évaluations |
Développeur | tobias.thyssen |
[email protected] | |
Type de Paiement | free |
Site Web de l'Extension | https://github.com/tobiasthyssen/pocket-casts-media-controls |
Langues Prises en Charge | 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 } } } |