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 파일 다운로드
크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.
확장 프로그램 사용 설명서
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\/*" ] } |