Play/Pause Button For Pocket Casts 2
Simple play/pause button for Pocket Casts. This button allows to pause or resume current podcasts independently of current tab.
Play/Pause Button For Pocket Casts 2 क्या है?
Play/Pause Button For Pocket Casts 2 illuzor द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Simple play/pause button for Pocket Casts. This button allows to pause or resume current podcasts independently of current tab."।
एक्सटेंशन स्क्रीनशॉट्स
एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें
crx प्रारूप में Play/Pause Button For Pocket Casts 2 एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ crx फ़ाइलों को साझा करें ताकि क्रोम एक्सटेंशन को आसानी से स्थापित किया जा सके।
एक्सटेंशन उपयोग निर्देश
Simple play/pause button for Pocket Casts with media keys support. This button allows to pause or resume current podcasts independently of current tab or current window. If Pocket Casts site is not open, it will be open by click on the icon. Keyboard media keys support: - Play/Pause ⏯; - Back ⏮ - skip back; - Forward ⏭ - skip forward. Media keys may be disabled in options.
एक्सटेंशन की मूल जानकारी
नाम | Play/Pause Button For Pocket Casts 2 |
ID | ogdnlmiknnmedpcnjnkjncdjjgfdkiik |
आधिकारिक URL | https://chromewebstore.google.com/detail/playpause-button-for-pock/ogdnlmiknnmedpcnjnkjncdjjgfdkiik |
विवरण | Simple play/pause button for Pocket Casts. This button allows to pause or resume current podcasts independently of current tab. |
फ़ाइल का आकार | 17.4 KB |
स्थापना संख्या | 339 |
वर्तमान संस्करण | 2.1.2 |
अंतिम अपडेट | 2024-01-17 |
प्रकाशन तिथि | 2020-01-05 |
रेटिंग | 5.00/5 कुल 10 रेटिंग्स |
डेवलपर | illuzor |
ईमेल | [email protected] |
भुगतान के प्रकार | free |
एक्सटेंशन वेबसाइट | https://github.com/illuzor/Play-Button-For-Pocket-Casts/ |
सहायता पृष्ठ URL | https://github.com/illuzor/Play-Button-For-Pocket-Casts/issues |
समर्थित भाषाएँ | en,ru |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 3, "name": "__MSG_ext_name__", "short_name": "__MSG_ext_short_name__", "description": "__MSG_ext_description__", "version": "2.1.2", "author": "Artem Zanin", "default_locale": "en", "icons": { "16": "images\/Play.png", "48": "images\/icon48.png", "128": "images\/icon128.png" }, "options_ui": { "page": "options.html" }, "permissions": [ "storage", "tabs", "scripting" ], "host_permissions": [ "https:\/\/play.pocketcasts.com\/*\/" ], "background": { "service_worker": "background.js" }, "content_scripts": [ { "matches": [ "https:\/\/play.pocketcasts.com\/*\/" ], "js": [ "action-play.js", "action-skip.js" ] } ], "externally_connectable": { "matches": [ "*:\/\/*.pocketcasts.com\/*" ] }, "commands": { "play-pause": { "suggested_key": { "default": "MediaPlayPause" }, "description": "__MSG_play_pause__", "global": true }, "jump-back": { "suggested_key": { "default": "MediaPrevTrack" }, "description": "__MSG_jump_back__", "global": true }, "jump-forward": { "suggested_key": { "default": "MediaNextTrack" }, "description": "__MSG_jump_forward__", "global": true } }, "action": [] } |