Show in File Manager
Shows last downloaded file in default file manager
Show in File Manager क्या है?
Show in File Manager selim.ober द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Shows last downloaded file in default file manager"।
एक्सटेंशन स्क्रीनशॉट्स
एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें
crx प्रारूप में Show in File Manager एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ crx फ़ाइलों को साझा करें ताकि क्रोम एक्सटेंशन को आसानी से स्थापित किया जा सके।
एक्सटेंशन उपयोग निर्देश
Provides a handy shortcut (Cmd+Shift+Y for Mac or Ctrl+Shift+Y for Windows) for opening default file manager on the system and preselect your last downloaded file. It's there to save you from using your mouse to go the downloaded file at the bottom of your Chrome window, open the menu and click Show in File Manager.
एक्सटेंशन की मूल जानकारी
नाम | Show in File Manager |
ID | ajchknafbabadjpbdkcnglcakmiknlge |
आधिकारिक URL | https://chromewebstore.google.com/detail/show-in-file-manager/ajchknafbabadjpbdkcnglcakmiknlge |
विवरण | Shows last downloaded file in default file manager |
फ़ाइल का आकार | 8.02 KB |
स्थापना संख्या | 757 |
वर्तमान संस्करण | 1.0 |
अंतिम अपडेट | 2022-02-24 |
प्रकाशन तिथि | 2016-09-27 |
रेटिंग | 3.00/5 कुल 2 रेटिंग्स |
डेवलपर | selim.ober |
ईमेल | [email protected] |
भुगतान के प्रकार | free |
समर्थित भाषाएँ | en-US |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "Show in File Manager", "description": "Shows last downloaded file in default file manager", "version": "1.0", "icons": { "16": "icon16.png", "48": "icon48.png", "128": "icon128.png" }, "permissions": [ "downloads" ], "background": { "scripts": [ "script.js" ], "persistent": false }, "commands": { "show-last-download": { "suggested_key": { "default": "Ctrl+Shift+Y", "mac": "Command+Shift+Y" }, "description": "Show last downloaded file in default file manager" } } } |