Overcast Downloader
A shortcut to download the audio file from the Overcast webplayer
Overcast Downloader là gì?
Overcast Downloader là một tiện ích mở rộng Chrome được phát triển bởi TWright, và tính năng chính của nó là "A shortcut to download the audio file from the Overcast webplayer".
Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng
Tải xuống tệp CRX của tiện ích mở rộng Overcast Downloader
Tải xuống các tệp mở rộng Overcast Downloader dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.
Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng
Go to the Overcast webplayer for any podcast and click this extension's button. The currently playing podcast will download. It's that simple. No more navigating through the document html to find the audio source element and its src attribute copying that value and pasting it into the url bar hitting enter and then saving that page as an mp3.
Thông Tin Cơ Bản về Tiện Ích Mở Rộng
Tên | Overcast Downloader |
ID | dlnepfckckhaaehhcgkakkgnnkhdlhma |
URL Chính Thức | https://chromewebstore.google.com/detail/overcast-downloader/dlnepfckckhaaehhcgkakkgnnkhdlhma |
Mô tả | A shortcut to download the audio file from the Overcast webplayer |
Kích Thước Tệp | 16.37 KB |
Số Lần Cài Đặt | 651 |
Phiên Bản Hiện Tại | 1.0.2 |
Cập Nhật Lần Cuối | 2016-11-20 |
Ngày Phát Hành | 2016-11-20 |
Đánh Giá | 4.20/5 Tổng số 5 Đánh Giá |
Nhà Phát Triển | TWright |
Loại Thanh Toán | free |
Trang Web Mở Rộng | https://github.com/tristaaan/OvercastDownloader |
URL Trang Trợ Giúp | https://github.com/tristaaan/OvercastDownloader |
Ngôn Ngữ Được Hỗ Trợ | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "Overcast Downloader", "short_name": "Downloader", "description": "A shortcut to download the audio file from the Overcast webplayer", "version": "1.0.2", "browser_action": { "default_icon": "icons\/icon.png", "default_title": "Download podcast" }, "icons": { "16": "icons\/icon_16.png", "48": "icons\/icon_48.png", "128": "icons\/icon_128.png" }, "permissions": [ "activeTab", "http:\/\/overcast.fm\/*", "https:\/\/overcast.fm\/*" ], "background": { "scripts": [ "src\/background.js" ], "persistent": false } } |