Overcast: Mark as Played
Adds a "Mark as Played" button to podcast episodes on Overcast.fm.
什麼是Overcast: Mark as Played?
Overcast: Mark as Played是由Steve Grunwell開發的Chrome擴展程式,該擴展的主要功能是“Adds a "Mark as Played" button to podcast episodes on Overcast.fm.”。
擴展截圖
下載Overcast: Mark as Played擴展crx文件
下載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 |
官方網址 | 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\/*" ] } |