File Downloader
This Chrome browser extension is designed to make managing your downloads easier and more convenient. Featuring a beautiful…
File Downloader क्या है?
File Downloader hy6.dmitry.gorbatikov.vt1 द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "This Chrome browser extension is designed to make managing your downloads easier and more convenient. Featuring a beautiful…"।
एक्सटेंशन स्क्रीनशॉट्स
एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें
crx प्रारूप में File Downloader एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ crx फ़ाइलों को साझा करें ताकि क्रोम एक्सटेंशन को आसानी से स्थापित किया जा सके।
एक्सटेंशन उपयोग निर्देश
This Chrome browser extension is designed to make managing your downloads easier and more convenient. Featuring a beautiful Material Design and intuitive sorting functionality, it allows you to quickly and easily access all your downloads in one place. With a handy quick access button conveniently located on every page, you can quickly open the pop-up extension without wasting any extra time. And if you don't need it, you can easily enable or disable this feature in the extension window. Whether you frequently work with downloads or just want to diversify the standard downloader for Chrome, our extension is a great choice. It offers a unique and pleasant experience that is both functional and visually appealing. So why not give it a try? Download our extension today and start enjoying a more efficient and convenient way to manage your downloads in Chrome.
एक्सटेंशन की मूल जानकारी
नाम | File Downloader |
ID | fjbdpilgfapefeccpaihlfibblgbhdce |
आधिकारिक URL | https://chromewebstore.google.com/detail/file-downloader/fjbdpilgfapefeccpaihlfibblgbhdce |
विवरण | This Chrome browser extension is designed to make managing your downloads easier and more convenient. Featuring a beautiful… |
फ़ाइल का आकार | 589 KB |
स्थापना संख्या | 84 |
वर्तमान संस्करण | 1.0 |
अंतिम अपडेट | 2023-04-13 |
प्रकाशन तिथि | 2023-04-13 |
रेटिंग | 5.00/5 कुल 2 रेटिंग्स |
डेवलपर | hy6.dmitry.gorbatikov.vt1 |
ईमेल | [email protected] |
भुगतान के प्रकार | free |
समर्थित भाषाएँ | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "File Downloader", "version": "1.0", "manifest_version": 3, "offline_enabled": true, "action": { "default_title": "File Downloader", "default_popup": "index.html" }, "permissions": [ "downloads", "downloads.open", "storage" ], "content_scripts": [ { "js": [ "content.js" ], "matches": [ "https:\/\/*\/*", "http:\/\/*\/*" ], "run_at": "document_start" } ], "background": { "service_worker": "background.js" }, "icons": { "16": "icons\/icon16.png", "32": "icons\/icon32.png", "48": "icons\/icon48.png", "64": "icons\/icon64.png", "128": "icons\/icon128.png" } } |