Download Manager
A less intrusive way to access your recent downloads
Download Manager क्या है?
Download Manager https://james-coyle.dev द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "A less intrusive way to access your recent downloads"।
एक्सटेंशन स्क्रीनशॉट्स
एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें
crx प्रारूप में Download Manager एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ crx फ़ाइलों को साझा करें ताकि क्रोम एक्सटेंशन को आसानी से स्थापित किया जा सके।
एक्सटेंशन उपयोग निर्देश
Replaces the chrome downloads bar with a toolbar icon. The popup is styled to look like the new extensions menu for a more native feel. FEATURES - Access your download list at any time from the chrome toolbar - Option to display in the browser sidebar - Quickly search recent downloads - Badge count to show download status at a glance - Pause and resume downloads easily - Clear downloads from your history - Delete downloaded files from the popup - Open file in default application - Open file in browser - Open folder which contains the file - Quick link to chrome downloads page - Notification when your download completes INSTRUCTIONS Hold Ctrl to change the secondary download actions. Alt-J opens the popup.
एक्सटेंशन की मूल जानकारी
नाम | Download Manager |
ID | epgkpmpjileiepinlphboolabkkdelle |
आधिकारिक URL | https://chromewebstore.google.com/detail/download-manager/epgkpmpjileiepinlphboolabkkdelle |
विवरण | A less intrusive way to access your recent downloads |
फ़ाइल का आकार | 38.36 KB |
स्थापना संख्या | 29,091 |
वर्तमान संस्करण | 4.1.1 |
अंतिम अपडेट | 2023-11-15 |
प्रकाशन तिथि | 2017-09-12 |
रेटिंग | 4.06/5 कुल 79 रेटिंग्स |
डेवलपर | https://james-coyle.dev |
ईमेल | [email protected] |
भुगतान के प्रकार | free |
एक्सटेंशन वेबसाइट | https://github.com/JamesCoyle/downloads-extention |
सहायता पृष्ठ URL | https://github.com/JamesCoyle/downloads-extention/issues |
समर्थित भाषाएँ | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 3, "name": "Download Manager", "version": "4.1.1", "short_name": "Downloads", "author": "James Coyle", "description": "A less intrusive way to access your recent downloads", "icons": { "512": "icon.png" }, "permissions": [ "downloads", "downloads.open", "downloads.shelf", "storage", "sidePanel" ], "optional_permissions": [ "notifications" ], "action": { "default_popup": "popup.html", "default_title": "Downloads" }, "options_page": "options.html", "commands": { "_execute_action": { "suggested_key": { "windows": "Alt+J", "mac": "Alt+J", "chromeos": "Alt+J", "linux": "Alt+J" } } }, "background": { "type": "module", "service_worker": "background.js" }, "side_panel": { "default_path": "sidePanel.html" } } |