Set tab width to 4

Sets the tab width / indentation size to 4

  1. // ==UserScript==
  2. // @name Set tab width to 4
  3. // @description Sets the tab width / indentation size to 4
  4. // @version 1
  5. // @license MIT
  6. // @match *://*/*
  7. // @grant none
  8. // @namespace https://greasyfork.org/en/users/1141549-mwk-soul
  9. // ==/UserScript==
  10.  
  11. document.body.style.tabSize = 4;