Show in File Manager
Shows last downloaded file in default file manager
Co to jest Show in File Manager?
Show in File Manager to rozszerzenie Chrome opracowane przez selim.ober, a jego główną funkcją jest „Shows last downloaded file in default file manager”.
Zrzuty ekranu rozszerzenia
Pobierz plik CRX rozszerzenia Show in File Manager
Pobierz pliki rozszerzeń Show in File Manager w formacie crx, zainstaluj ręcznie rozszerzenia Chrome w przeglądarce lub udostępnij pliki crx znajomym, aby łatwo zainstalować rozszerzenia Chrome.
Instrukcja Użytkowania Rozszerzenia
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.
Podstawowe informacje o rozszerzeniu
Nazwa | Show in File Manager |
ID | ajchknafbabadjpbdkcnglcakmiknlge |
Oficjalny URL | https://chromewebstore.google.com/detail/show-in-file-manager/ajchknafbabadjpbdkcnglcakmiknlge |
Opis | Shows last downloaded file in default file manager |
Rozmiar pliku | 8.02 KB |
Liczba instalacji | 757 |
Aktualna Wersja | 1.0 |
Ostatnia Aktualizacja | 2022-02-24 |
Data Publikacji | 2016-09-27 |
Ocena | 3.00/5 Łącznie 2 Oceny |
Deweloper | selim.ober |
[email protected] | |
Typ Płatności | free |
Obsługiwane Języki | 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" } } } |