Overcast Downloader
A shortcut to download the audio file from the Overcast webplayer
Overcast Downloaderคืออะไร?
Overcast Downloader เป็นส่วนขยายของ Chrome ที่พัฒนาโดย TWright และคุณลักษณะหลักของมันคือ "A shortcut to download the audio file from the Overcast webplayer"
ภาพหน้าจอของส่วนขยาย
ดาวน์โหลดไฟล์ CRX ของส่วนขยาย Overcast Downloader
ดาวน์โหลดไฟล์ส่วนขยาย Overcast Downloader ในรูปแบบ crx และติดตั้งส่วนขยาย Chrome ด้วยตนเองในเบราว์เซอร์หรือแชร์ไฟล์ crx กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย Chrome อย่างง่ายดาย
คำแนะนำในการใช้ส่วนขยาย
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.
ข้อมูลพื้นฐานของส่วนขยาย
ชื่อ | Overcast Downloader |
ID | dlnepfckckhaaehhcgkakkgnnkhdlhma |
URL อย่างเป็นทางการ | https://chromewebstore.google.com/detail/overcast-downloader/dlnepfckckhaaehhcgkakkgnnkhdlhma |
คำอธิบาย | A shortcut to download the audio file from the Overcast webplayer |
ขนาดไฟล์ | 16.37 KB |
จำนวนการติดตั้ง | 651 |
เวอร์ชันปัจจุบัน | 1.0.2 |
อัปเดตครั้งล่าสุด | 2016-11-20 |
วันที่เผยแพร่ | 2016-11-20 |
คะแนน | 4.20/5 รวมทั้งหมด 5 คะแนน |
ผู้พัฒนา | TWright |
ประเภทการชำระเงิน | free |
เว็บไซต์ส่วนขยาย | https://github.com/tristaaan/OvercastDownloader |
URL หน้าช่วยเหลือ | https://github.com/tristaaan/OvercastDownloader |
ภาษาที่รองรับ | 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 } } |