Greasy Fork is available in English.

Remove Gallery and Magnifier Buttons

Removes gallery and magnifier buttons from the page

  1. // ==UserScript==
  2. // @name Remove Gallery and Magnifier Buttons
  3. // @namespace yourNamespace
  4. // @version 1.0
  5. // @description Removes gallery and magnifier buttons from the page
  6. // @match *://*/*
  7. // @grant GM_addStyle
  8. // ==/UserScript==
  9.  
  10. (function() {
  11. 'use strict';
  12. // Hide gallery button
  13. GM_addStyle('.pv-float-bar-button-gallery { display: none !important; }');
  14. // Hide magnifier button
  15. GM_addStyle('.pv-float-bar-button-magnifier { display: none !important; }');
  16. })();