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 |
| 官方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\/*"
]
}
]
} | |