Media key support for Pocket Casts
Control Pocket Casts podcast webapp from anywhere!
Wat is Media key support for Pocket Casts?
Media key support for Pocket Casts is een Chrome-extensie ontwikkeld door tobias.thyssen, en de belangrijkste functie is "Control Pocket Casts podcast webapp from anywhere!".
Extensie Screenshots
Download het CRX-bestand van de extensie Media key support for Pocket Casts
Download Media key support for Pocket Casts-extensiebestanden in crx-indeling, installeer Chrome-extensies handmatig in de browser of deel de crx-bestanden met vrienden om Chrome-extensies eenvoudig te installeren.
Instructies voor het Gebruik van de Extensie
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/
Basisinformatie over de Extensie
Naam | Media key support for Pocket Casts |
ID | edloapkoalgpnkdknpmclplmfkecgpai |
Officiële URL | https://chromewebstore.google.com/detail/media-key-support-for-poc/edloapkoalgpnkdknpmclplmfkecgpai |
Beschrijving | Control Pocket Casts podcast webapp from anywhere! |
Bestandsgrootte | 8.31 KB |
Aantal Installaties | 168 |
Huidige Versie | 1.2.3 |
Laatst Bijgewerkt | 2021-09-21 |
Publicatiedatum | 2020-05-25 |
Beoordeling | 4.44/5 Totaal 9 Beoordelingen |
Ontwikkelaar | tobias.thyssen |
[email protected] | |
Betalingswijze | free |
Extensiewebsite | https://github.com/tobiasthyssen/pocket-casts-media-controls |
Ondersteunde Talen | 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 } } } |