Show in File Manager
Shows last downloaded file in default file manager
Qu'est-ce que Show in File Manager ?
Show in File Manager est une extension Chrome développée par selim.ober, et sa fonction principale est "Shows last downloaded file in default file manager".
Captures d'Écran de l'Extension
Télécharger le fichier CRX de l'extension Show in File Manager
Téléchargez les fichiers d'extension Show in File Manager au format crx, installez manuellement les extensions Chrome dans le navigateur ou partagez les fichiers crx avec des amis pour installer facilement les extensions Chrome.
Instructions d'Utilisation de l'Extension
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.
Informations de Base sur l'Extension
Nom | Show in File Manager |
ID | ajchknafbabadjpbdkcnglcakmiknlge |
URL Officiel | https://chromewebstore.google.com/detail/show-in-file-manager/ajchknafbabadjpbdkcnglcakmiknlge |
Description | Shows last downloaded file in default file manager |
Taille du Fichier | 8.02 KB |
Nombre d'Installations | 757 |
Version Actuelle | 1.0 |
Dernière Mise à Jour | 2022-02-24 |
Date de Publication | 2016-09-27 |
Évaluation | 3.00/5 Total 2 Évaluations |
Développeur | selim.ober |
[email protected] | |
Type de Paiement | free |
Langues Prises en Charge | 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" } } } |