Show in File Manager
Shows last downloaded file in default file manager
O que é Show in File Manager?
Show in File Manager é uma extensão do Chrome desenvolvida por selim.ober, e sua principal característica é "Shows last downloaded file in default file manager".
Capturas de Tela da Extensão
Baixar o arquivo CRX da Extensão Show in File Manager
Baixe arquivos de extensão Show in File Manager no formato crx, instale manualmente as extensões do Chrome no navegador ou compartilhe os arquivos crx com amigos para instalar facilmente as extensões do Chrome.
Instruções de Uso da Extensão
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.
Informações Básicas da Extensão
Nome | Show in File Manager |
ID | ajchknafbabadjpbdkcnglcakmiknlge |
URL Oficial | https://chromewebstore.google.com/detail/show-in-file-manager/ajchknafbabadjpbdkcnglcakmiknlge |
Descrição | Shows last downloaded file in default file manager |
Tamanho do Arquivo | 8.02 KB |
Contagem de Instalações | 757 |
Versão Atual | 1.0 |
Última Atualização | 2022-02-24 |
Data de Publicação | 2016-09-27 |
Classificação | 3.00/5 Total de 2 Avaliações |
Desenvolvedor | selim.ober |
[email protected] | |
Tipo de Pagamento | free |
Idiomas Suportados | 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" } } } |