Removes gallery and magnifier buttons from the page
// ==UserScript==
// @name Remove Gallery and Magnifier Buttons
// @namespace yourNamespace
// @version 1.0
// @description Removes gallery and magnifier buttons from the page
// @match *://*/*
// @grant GM_addStyle
// ==/UserScript==
(function() {
'use strict';
// Hide gallery button
GM_addStyle('.pv-float-bar-button-gallery { display: none !important; }');
// Hide magnifier button
GM_addStyle('.pv-float-bar-button-magnifier { display: none !important; }');
})();