How to disable context menu for PEERTUBE

How to disable context menu for PEERTUBE

I found a way to do this. This is for embedded videos, but I’m sure you can find the corresponding html file for normal watching.

 Edit /var/www/peertube/peertube-latest/client/dist/standalone/videos/embed.html

 Add this before </head> :

 <style> .vjs-contextmenu-ui-menu { display: none !important; } </style>

Then restart peertube with:

 systemctl restart peertube

The Peertube embed video context menu (right-click) that allowed to Copy URL won’t show anymore.

As others have pointed out here and elsewhere this won’t prevent people from getting the URL. At least it won’t make it trivially easy without the Inspector.