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 เป็นส่วนขยายของ Chrome ที่พัฒนาโดย illuzor และคุณลักษณะหลักของมันคือ "Simple play/pause button for Pocket Casts. This button allows to pause or resume current podcasts independently of current tab."
ภาพหน้าจอของส่วนขยาย
ดาวน์โหลดไฟล์ CRX ของส่วนขยาย Play/Pause Button For Pocket Casts 2
ดาวน์โหลดไฟล์ส่วนขยาย Play/Pause Button For Pocket Casts 2 ในรูปแบบ crx และติดตั้งส่วนขยาย Chrome ด้วยตนเองในเบราว์เซอร์หรือแชร์ไฟล์ crx กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย Chrome อย่างง่ายดาย
คำแนะนำในการใช้ส่วนขยาย
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": [] } |