Google Podcasts Downloader
Allows you to download podcasts.
Google Podcasts Downloaderคืออะไร?
Google Podcasts Downloader เป็นส่วนขยายของ Chrome ที่พัฒนาโดย molotochok และคุณลักษณะหลักของมันคือ "Allows you to download podcasts."
ภาพหน้าจอของส่วนขยาย
ดาวน์โหลดไฟล์ CRX ของส่วนขยาย Google Podcasts Downloader
ดาวน์โหลดไฟล์ส่วนขยาย Google Podcasts Downloader ในรูปแบบ crx และติดตั้งส่วนขยาย Chrome ด้วยตนเองในเบราว์เซอร์หรือแชร์ไฟล์ crx กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย Chrome อย่างง่ายดาย
คำแนะนำในการใช้ส่วนขยาย
Do you want to download your favorite podcasts on Google Podcasts but don't know how? Well, this extension can help you with this task. It simply creates a button that allows you to download the podcast which is currently selected for playback. If you wish to support my work you can by me a ☕: https://www.buymeacoffee.com/markian98f
ข้อมูลพื้นฐานของส่วนขยาย
ชื่อ | Google Podcasts Downloader |
ID | nmccjgongkpmdkfnjkahjlfphcfmjkgo |
URL อย่างเป็นทางการ | https://chromewebstore.google.com/detail/google-podcasts-downloade/nmccjgongkpmdkfnjkahjlfphcfmjkgo |
คำอธิบาย | Allows you to download podcasts. |
ขนาดไฟล์ | 14.48 KB |
จำนวนการติดตั้ง | 6,655 |
เวอร์ชันปัจจุบัน | 1.1 |
อัปเดตครั้งล่าสุด | 2024-02-11 |
วันที่เผยแพร่ | 2022-05-13 |
คะแนน | 4.30/5 รวมทั้งหมด 10 คะแนน |
ผู้พัฒนา | molotochok |
อีเมล | [email protected] |
ประเภทการชำระเงิน | free |
เว็บไซต์ส่วนขยาย | https://github.com/molotochok/google-podcast-downloader-extension |
ภาษาที่รองรับ | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "Google Podcasts Downloader", "description": "Allows you to download podcasts.", "version": "1.1", "manifest_version": 3, "background": { "service_worker": "background.js" }, "permissions": [ "downloads", "tabs", "management" ], "icons": { "16": "\/images\/icon-16.png", "32": "\/images\/icon-32.png", "48": "\/images\/icon-48.png", "128": "\/images\/icon-128.png" }, "content_scripts": [ { "js": [ "init.js" ], "css": [ "style.css" ], "matches": [ "*:\/\/podcasts.google.com\/*" ] } ] } |