Google Podcasts Downloader
Allows you to download podcasts.
什麼是Google Podcasts Downloader?
Google Podcasts Downloader是由molotochok開發的Chrome擴展程式,該擴展的主要功能是“Allows you to download podcasts.”。
擴展截圖
下載Google Podcasts Downloader擴展crx文件
下載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 擴展基本資訊
| 名稱 | |
| ID | nmccjgongkpmdkfnjkahjlfphcfmjkgo |
| 官方網址 | 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\/*"
]
}
]
} | |