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. 拡張機能の基本情報
| 名前 | |
| 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 |
| Eメール | [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\/*"
]
} | |