Greasy Fork is available in English.

Flickr - bigger pages and next buttons

Flickr - bigger buttons for page's number, next and previous

  1. // ==UserScript==
  2. // @name Flickr - bigger pages and next buttons
  3. // @namespace http://tampermonkey.net/
  4. // @version 0.1
  5. // @description Flickr - bigger buttons for page's number, next and previous
  6. // @author ClaoDD
  7. // @match https://www.flickr.com/*
  8. // @grant none
  9. // ==/UserScript==
  10.  
  11. (function(){
  12. var style = document.createElement('style'),
  13. styleContent = document.createTextNode('.pagination-view span { min-width:80px !important; height:192px !important; padding: 0 2px !important; }');
  14. style.appendChild(styleContent );
  15. var caput = document.getElementsByTagName('head');
  16. caput[0].appendChild(style);
  17. })();