X-Git-Url: https://git.immae.eu/?a=blobdiff_plain;f=plugins%2Fplayvideos%2FREADME.md;h=32a94e88080c31849b01e1acdcaa10677363eda2;hb=91a21c272960889afd4eaa431a3d29b7785b6efc;hp=ec1ead8d4c8f3e43ec4b667e6bca48a255e7f55b;hpb=66017e28935c72ad4ed037f022483ee5630e7372;p=github%2Fshaarli%2FShaarli.git diff --git a/plugins/playvideos/README.md b/plugins/playvideos/README.md index ec1ead8d..32a94e88 100644 --- a/plugins/playvideos/README.md +++ b/plugins/playvideos/README.md @@ -1,21 +1,28 @@ ### ► Play Videos plugin for Shaarli -This plugin adds a `► Play Videos` button to [Shaarli](https://github.com/shaarli/Shaarli)'s toolbar. Click this button to play all videos on the page in an overlay HTML5 player. Nice for continuous stream of music, documentaries, talks... -This uses code from https://zaius.github.io/youtube_playlist/ and is currently only compatible with Youtube videos. +Adds a `► Play Videos` button to [Shaarli](https://github.com/shaarli/Shaarli)'s toolbar. Click this button to play all videos on the page in an overlay HTML5 player. Nice for continuous stream of music, documentaries, talks... + + -![](https://cdn.mediacru.sh/D_izf0zjAtxy.png) +This uses code from https://zaius.github.io/youtube_playlist/ and is currently only compatible with Youtube videos. #### Installation and setup -Place the files in the `tpl/plugins/playvideos/` directory of your Shaarli. -This is a default Shaarli plugin, you just have to enable it. -To enable the plugin, add `playvideos` to the `TOOLBAR_PLUGINS` config option in your `index.php` or `data/options.php`. Example: +This is a default Shaarli plugin, you just have to enable it. See [Shaarli configuration](../../doc/md/Shaarli-configuration.md). - $GLOBALS['config']['TOOLBAR_PLUGINS'] = array('aplugins', 'anotherone', 'playvideos'); #### Troubleshooting -If your server has [Content Security Policy](http://content-security-policy.com/) headers enabled, this may prevent the script from loading fully. You should relax the CSP in your server settings. Example CSP rule for apache2: -`Header set Content-Security-Policy "script-src 'self' 'unsafe-inline' https://www.youtube.com https://s.ytimg.com 'unsafe-eval'"` + +If your server has [Content Security Policy](http://content-security-policy.com/) headers enabled, this may prevent the script from loading fully. You should relax the CSP in your server settings. Example CSP rule for apache2: + +```apache + + # Required for playvideos plugin + Header set Content-Security-Policy "script-src 'self' 'unsafe-inline' https://www.youtube.com https://s.ytimg.com 'unsafe-eval'" + +``` + +You may place the `Header` directive in the `