Skip to content

Latest commit

 

History

History
executable file
·
27 lines (20 loc) · 890 Bytes

README.md

File metadata and controls

executable file
·
27 lines (20 loc) · 890 Bytes

Hide sidebars

Hide left sidebar and top header bar for use in iframe for example or some other scenarios.

Usage

Add hide-sidebars after ? as query parameter to nextcloud url or with dir parameter after &. If you need to hide only left or top menu you can use hide-left-menu or hide-top-menu.

Examples:

http://nextcloud.example.com/index.php/apps/files/?hide-sidebars
http://nextcloud.example.com/index.php/apps/files/?dir=/New%20folder&hide-sidebars

Screenshot

Tab view in sidebar

iframe

This app from version 2.0.0 brings new config parameter addAllowedFrameAncestorDomain. For usage in iframe you must update lib/public/AppFramework/Http/ContentSecurityPolicy.php manually or use this new parameter addAllowedFrameAncestorDomain in config.php

...
'addAllowedFrameAncestorDomain' => '*.example.com:*'
...