[Box] Modify icon-view size step

try to take over the world!

  1. // ==UserScript==
  2. // @name [Box] Modify icon-view size step
  3. // @namespace http://tampermonkey.net/
  4. // @version 0.1
  5. // @description try to take over the world!
  6. // @author SSARCandy
  7. // @match https://app.box.com/*
  8. // @grant none
  9. // ==/UserScript==
  10.  
  11. (function () {
  12. 'use strict';
  13. setTimeout(()=> {
  14. $('div.file-list-header.icon-view > .file-list-icon-view-control > input').attr('step', 1);
  15. }, 3000);
  16.  
  17. })();