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 buttonGM_addStyle('.pv-float-bar-button-gallery { display: none !important; }');// Hide magnifier buttonGM_addStyle('.pv-float-bar-button-magnifier { display: none !important; }');})();