Google Podcasts Downloader
Allows you to download podcasts.
Google Podcasts Downloader क्या है?
Google Podcasts Downloader molotochok द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Allows you to download podcasts."।
एक्सटेंशन स्क्रीनशॉट्स
एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें
crx प्रारूप में Google Podcasts Downloader एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ crx फ़ाइलों को साझा करें ताकि क्रोम एक्सटेंशन को आसानी से स्थापित किया जा सके।
एक्सटेंशन उपयोग निर्देश
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\/*" ] } ] } |