Show in File Manager

Shows last downloaded file in default file manager

Vad är Show in File Manager?

Show in File Manager är en Chrome-tillägg utvecklad av selim.ober, och dess huvudfunktion är "Shows last downloaded file in default file manager".

Tilläggsskärmbilder

screenshot

Ladda ner Show in File Manager-förlängningens CRX-fil

Ladda ner Show in File Manager-filändelser i crx-format, installera Chrome-tillägg manuellt i webbläsaren eller dela crx-filerna med vänner för att enkelt installera Chrome-tillägg.

Användarmanual för Tillägg

                        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.                    

Grundläggande Information om Tillägg

Namn Show in File Manager Show in File Manager
ID ajchknafbabadjpbdkcnglcakmiknlge
Officiell webbadress https://chromewebstore.google.com/detail/show-in-file-manager/ajchknafbabadjpbdkcnglcakmiknlge
Beskrivning Shows last downloaded file in default file manager
Filstorlek 8.02 KB
Antal Installationer 757
Aktuell Version 1.0
Senast Uppdaterad 2022-02-24
Publiceringsdatum 2016-09-27
Betyg 3.00/5 Totalt 2 Betyg
Utvecklare selim.ober
E-post [email protected]
Betalningssätt free
Stödda Språk 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"
        }
    }
}