Show in File Manager
Shows last downloaded file in default file manager
什么是Show in File Manager?
Show in File Manager是由selim.ober开发的Chrome扩展程序,该扩展的主要功能是“Shows last downloaded file in default file manager”。
扩展截图
下载Show in File Manager扩展crx文件
下载Show in File Manager扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。
扩展使用说明
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" } } } |