Overcast: Mark as Played
Adds a "Mark as Played" button to podcast episodes on Overcast.fm.
Overcast: Mark as Playedคืออะไร?
Overcast: Mark as Played เป็นส่วนขยายของ Chrome ที่พัฒนาโดย Steve Grunwell และคุณลักษณะหลักของมันคือ "Adds a "Mark as Played" button to podcast episodes on Overcast.fm."
ภาพหน้าจอของส่วนขยาย
ดาวน์โหลดไฟล์ CRX ของส่วนขยาย Overcast: Mark as Played
ดาวน์โหลดไฟล์ส่วนขยาย Overcast: Mark as Played ในรูปแบบ crx และติดตั้งส่วนขยาย Chrome ด้วยตนเองในเบราว์เซอร์หรือแชร์ไฟล์ crx กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย Chrome อย่างง่ายดาย
คำแนะนำในการใช้ส่วนขยาย
If you've ever found yourself bouncing between podcast apps, your Overcast.fm history might be suggesting podcast episodes you've already heard. This extension adds a "Mark as Played" button on the Overcast.fm site, making it easy to check-off the episodes you've already enjoyed. Please note that this extension is in no way affiliated with Overcast or its owner; I'm simply a fan of (and premium subscriber to) the platform.
ข้อมูลพื้นฐานของส่วนขยาย
ชื่อ | Overcast: Mark as Played |
ID | gaeeolkmbpimllholhblmckdccmlbhnd |
URL อย่างเป็นทางการ | https://chromewebstore.google.com/detail/overcast-mark-as-played/gaeeolkmbpimllholhblmckdccmlbhnd |
คำอธิบาย | Adds a "Mark as Played" button to podcast episodes on Overcast.fm. |
ขนาดไฟล์ | 11 KB |
จำนวนการติดตั้ง | 197 |
เวอร์ชันปัจจุบัน | 1.0.1 |
อัปเดตครั้งล่าสุด | 2020-11-19 |
วันที่เผยแพร่ | 2020-07-07 |
ผู้พัฒนา | Steve Grunwell |
อีเมล | [email protected] |
ประเภทการชำระเงิน | free |
เว็บไซต์ส่วนขยาย | https://github.com/stevegrunwell/overcast-mark-as-played |
URL หน้าช่วยเหลือ | https://github.com/stevegrunwell/overcast-mark-as-played/issues |
ภาษาที่รองรับ | en-US |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "Overcast: Mark as Played", "description": "Adds a \"Mark as Played\" button to podcast episodes on Overcast.fm.", "version": "1.0.1", "author": "Steve Grunwell", "homepage_url": "https:\/\/github.com\/stevegrunwell\/overcast-mark-as-played", "content_scripts": [ { "matches": [ "*:\/\/overcast.fm\/*" ], "css": [ "src\/style.css" ], "js": [ "src\/script.js" ], "run_at": "document_end" } ], "icons": { "16": "src\/icon-16.png", "48": "src\/icon-48.png", "96": "src\/icon-96.png", "128": "src\/icon-128.png" }, "permissions": [ "*:\/\/overcast.fm\/*" ] } |